@syncfusion/ej2-schedule 30.2.7 → 31.1.17
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 +110 -36
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +110 -36
- 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/dist/ts/common/calendar-util.d.ts +92 -0
- package/dist/ts/common/calendar-util.ts +261 -0
- package/dist/ts/common/index.d.ts +4 -0
- package/dist/ts/common/index.ts +4 -0
- package/dist/ts/components.d.ts +5 -0
- package/dist/ts/components.ts +5 -0
- package/dist/ts/index.d.ts +6 -0
- package/dist/ts/index.ts +7 -0
- package/dist/ts/recurrence-editor/date-generator.d.ts +76 -0
- package/dist/ts/recurrence-editor/date-generator.ts +1699 -0
- package/dist/ts/recurrence-editor/index.d.ts +6 -0
- package/dist/ts/recurrence-editor/index.ts +6 -0
- package/dist/ts/recurrence-editor/recurrence-editor-model.d.ts +112 -0
- package/dist/ts/recurrence-editor/recurrence-editor.d.ts +245 -0
- package/dist/ts/recurrence-editor/recurrence-editor.ts +1257 -0
- package/dist/ts/schedule/actions/action-base.d.ts +44 -0
- package/dist/ts/schedule/actions/action-base.ts +493 -0
- package/dist/ts/schedule/actions/crud.d.ts +41 -0
- package/dist/ts/schedule/actions/crud.ts +784 -0
- package/dist/ts/schedule/actions/data.d.ts +63 -0
- package/dist/ts/schedule/actions/data.ts +128 -0
- package/dist/ts/schedule/actions/drag.d.ts +75 -0
- package/dist/ts/schedule/actions/drag.ts +1401 -0
- package/dist/ts/schedule/actions/keyboard.d.ts +100 -0
- package/dist/ts/schedule/actions/keyboard.ts +1435 -0
- package/dist/ts/schedule/actions/resize.d.ts +27 -0
- package/dist/ts/schedule/actions/resize.ts +602 -0
- package/dist/ts/schedule/actions/scroll.d.ts +69 -0
- package/dist/ts/schedule/actions/scroll.ts +105 -0
- package/dist/ts/schedule/actions/touch.d.ts +32 -0
- package/dist/ts/schedule/actions/touch.ts +314 -0
- package/dist/ts/schedule/actions/virtual-scroll.d.ts +55 -0
- package/dist/ts/schedule/actions/virtual-scroll.ts +596 -0
- package/dist/ts/schedule/actions/work-cells.d.ts +14 -0
- package/dist/ts/schedule/actions/work-cells.ts +151 -0
- package/dist/ts/schedule/base/constant.d.ts +102 -0
- package/dist/ts/schedule/base/constant.ts +103 -0
- package/dist/ts/schedule/base/css-constant.d.ts +475 -0
- package/dist/ts/schedule/base/css-constant.ts +475 -0
- package/dist/ts/schedule/base/interface.d.ts +673 -0
- package/dist/ts/schedule/base/interface.ts +738 -0
- package/dist/ts/schedule/base/resource.d.ts +59 -0
- package/dist/ts/schedule/base/resource.ts +1091 -0
- package/dist/ts/schedule/base/schedule-model.d.ts +930 -0
- package/dist/ts/schedule/base/schedule.d.ts +1967 -0
- package/dist/ts/schedule/base/schedule.ts +4221 -0
- package/dist/ts/schedule/base/type.d.ts +134 -0
- package/dist/ts/schedule/base/type.ts +142 -0
- package/dist/ts/schedule/base/util.d.ts +266 -0
- package/dist/ts/schedule/base/util.ts +492 -0
- package/dist/ts/schedule/event-renderer/agenda-base.d.ts +15 -0
- package/dist/ts/schedule/event-renderer/agenda-base.ts +423 -0
- package/dist/ts/schedule/event-renderer/event-base.d.ts +101 -0
- package/dist/ts/schedule/event-renderer/event-base.ts +1501 -0
- package/dist/ts/schedule/event-renderer/inline-edit.d.ts +23 -0
- package/dist/ts/schedule/event-renderer/inline-edit.ts +287 -0
- package/dist/ts/schedule/event-renderer/month.d.ts +60 -0
- package/dist/ts/schedule/event-renderer/month.ts +760 -0
- package/dist/ts/schedule/event-renderer/timeline-view.d.ts +51 -0
- package/dist/ts/schedule/event-renderer/timeline-view.ts +606 -0
- package/dist/ts/schedule/event-renderer/vertical-view.d.ts +57 -0
- package/dist/ts/schedule/event-renderer/vertical-view.ts +898 -0
- package/dist/ts/schedule/event-renderer/year.d.ts +27 -0
- package/dist/ts/schedule/event-renderer/year.ts +623 -0
- package/dist/ts/schedule/exports/calendar-export.d.ts +16 -0
- package/dist/ts/schedule/exports/calendar-export.ts +160 -0
- package/dist/ts/schedule/exports/calendar-import.d.ts +18 -0
- package/dist/ts/schedule/exports/calendar-import.ts +277 -0
- package/dist/ts/schedule/exports/excel-export.d.ts +14 -0
- package/dist/ts/schedule/exports/excel-export.ts +89 -0
- package/dist/ts/schedule/exports/index.d.ts +7 -0
- package/dist/ts/schedule/exports/index.ts +7 -0
- package/dist/ts/schedule/exports/print.d.ts +20 -0
- package/dist/ts/schedule/exports/print.ts +233 -0
- package/dist/ts/schedule/index.d.ts +26 -0
- package/dist/ts/schedule/index.ts +26 -0
- package/dist/ts/schedule/models/event-settings-model.d.ts +165 -0
- package/dist/ts/schedule/models/event-settings.d.ts +149 -0
- package/dist/ts/schedule/models/event-settings.ts +187 -0
- package/dist/ts/schedule/models/field-options-model.d.ts +37 -0
- package/dist/ts/schedule/models/field-options.d.ts +31 -0
- package/dist/ts/schedule/models/field-options.ts +41 -0
- package/dist/ts/schedule/models/fields-model.d.ts +129 -0
- package/dist/ts/schedule/models/fields.d.ts +117 -0
- package/dist/ts/schedule/models/fields.ts +149 -0
- package/dist/ts/schedule/models/group-model.d.ts +69 -0
- package/dist/ts/schedule/models/group.d.ts +60 -0
- package/dist/ts/schedule/models/group.ts +75 -0
- package/dist/ts/schedule/models/header-rows-model.d.ts +33 -0
- package/dist/ts/schedule/models/header-rows.d.ts +30 -0
- package/dist/ts/schedule/models/header-rows.ts +35 -0
- package/dist/ts/schedule/models/models.d.ts +14 -0
- package/dist/ts/schedule/models/models.ts +15 -0
- package/dist/ts/schedule/models/quick-info-templates-model.d.ts +52 -0
- package/dist/ts/schedule/models/quick-info-templates.d.ts +47 -0
- package/dist/ts/schedule/models/quick-info-templates.ts +56 -0
- package/dist/ts/schedule/models/resources-model.d.ts +122 -0
- package/dist/ts/schedule/models/resources.d.ts +106 -0
- package/dist/ts/schedule/models/resources.ts +138 -0
- package/dist/ts/schedule/models/time-scale-model.d.ts +57 -0
- package/dist/ts/schedule/models/time-scale.d.ts +50 -0
- package/dist/ts/schedule/models/time-scale.ts +61 -0
- package/dist/ts/schedule/models/toolbar-model.d.ts +196 -0
- package/dist/ts/schedule/models/toolbar.d.ts +176 -0
- package/dist/ts/schedule/models/toolbar.ts +196 -0
- package/dist/ts/schedule/models/views-model.d.ts +370 -0
- package/dist/ts/schedule/models/views.d.ts +335 -0
- package/dist/ts/schedule/models/views.ts +408 -0
- package/dist/ts/schedule/models/work-hours-model.d.ts +29 -0
- package/dist/ts/schedule/models/work-hours.d.ts +24 -0
- package/dist/ts/schedule/models/work-hours.ts +31 -0
- package/dist/ts/schedule/popups/event-tooltip.d.ts +16 -0
- package/dist/ts/schedule/popups/event-tooltip.ts +203 -0
- package/dist/ts/schedule/popups/event-window.d.ts +118 -0
- package/dist/ts/schedule/popups/event-window.ts +2055 -0
- package/dist/ts/schedule/popups/form-validator.d.ts +16 -0
- package/dist/ts/schedule/popups/form-validator.ts +110 -0
- package/dist/ts/schedule/popups/quick-popups.d.ts +78 -0
- package/dist/ts/schedule/popups/quick-popups.ts +1470 -0
- package/dist/ts/schedule/renderer/agenda.d.ts +45 -0
- package/dist/ts/schedule/renderer/agenda.ts +497 -0
- package/dist/ts/schedule/renderer/day.d.ts +20 -0
- package/dist/ts/schedule/renderer/day.ts +28 -0
- package/dist/ts/schedule/renderer/header-renderer.d.ts +48 -0
- package/dist/ts/schedule/renderer/header-renderer.ts +736 -0
- package/dist/ts/schedule/renderer/month-agenda.d.ts +29 -0
- package/dist/ts/schedule/renderer/month-agenda.ts +184 -0
- package/dist/ts/schedule/renderer/month.d.ts +61 -0
- package/dist/ts/schedule/renderer/month.ts +766 -0
- package/dist/ts/schedule/renderer/renderer.d.ts +13 -0
- package/dist/ts/schedule/renderer/renderer.ts +165 -0
- package/dist/ts/schedule/renderer/timeline-header-row.d.ts +15 -0
- package/dist/ts/schedule/renderer/timeline-header-row.ts +132 -0
- package/dist/ts/schedule/renderer/timeline-month.d.ts +29 -0
- package/dist/ts/schedule/renderer/timeline-month.ts +184 -0
- package/dist/ts/schedule/renderer/timeline-view.d.ts +31 -0
- package/dist/ts/schedule/renderer/timeline-view.ts +308 -0
- package/dist/ts/schedule/renderer/timeline-year.d.ts +22 -0
- package/dist/ts/schedule/renderer/timeline-year.ts +450 -0
- package/dist/ts/schedule/renderer/vertical-view.d.ts +63 -0
- package/dist/ts/schedule/renderer/vertical-view.ts +911 -0
- package/dist/ts/schedule/renderer/view-base.d.ts +83 -0
- package/dist/ts/schedule/renderer/view-base.ts +709 -0
- package/dist/ts/schedule/renderer/week.d.ts +22 -0
- package/dist/ts/schedule/renderer/week.ts +35 -0
- package/dist/ts/schedule/renderer/work-week.d.ts +22 -0
- package/dist/ts/schedule/renderer/work-week.ts +36 -0
- package/dist/ts/schedule/renderer/year.d.ts +46 -0
- package/dist/ts/schedule/renderer/year.ts +470 -0
- package/dist/ts/schedule/timezone/timezone.d.ts +16 -0
- package/dist/ts/schedule/timezone/timezone.ts +313 -0
- package/package.json +56 -21
- package/src/schedule/actions/action-base.js +3 -0
- package/src/schedule/actions/drag.js +11 -4
- package/src/schedule/actions/keyboard.js +1 -1
- package/src/schedule/actions/resize.js +8 -5
- package/src/schedule/base/css-constant.d.ts +2 -0
- package/src/schedule/base/css-constant.js +2 -0
- package/src/schedule/base/schedule.js +15 -1
- package/src/schedule/event-renderer/agenda-base.d.ts +1 -1
- package/src/schedule/event-renderer/agenda-base.js +5 -4
- package/src/schedule/event-renderer/inline-edit.js +11 -6
- package/src/schedule/event-renderer/month.js +5 -3
- package/src/schedule/event-renderer/vertical-view.js +3 -0
- package/src/schedule/event-renderer/year.d.ts +2 -0
- package/src/schedule/event-renderer/year.js +28 -4
- package/src/schedule/popups/event-tooltip.js +4 -0
- package/src/schedule/popups/event-window.js +2 -2
- package/src/schedule/popups/quick-popups.js +5 -1
- package/src/schedule/renderer/agenda.js +3 -2
- package/src/schedule/renderer/vertical-view.js +1 -1
- package/src/schedule/renderer/year.js +3 -2
- package/styles/bds-lite.css +11 -8
- package/styles/bds.css +11 -8
- package/styles/bootstrap-dark-lite.css +12 -9
- package/styles/bootstrap-dark.css +12 -9
- package/styles/bootstrap-lite.css +12 -9
- package/styles/bootstrap.css +12 -9
- package/styles/bootstrap4-lite.css +11 -8
- package/styles/bootstrap4.css +11 -8
- package/styles/bootstrap5-dark-lite.css +11 -8
- package/styles/bootstrap5-dark.css +11 -8
- package/styles/bootstrap5-lite.css +11 -8
- package/styles/bootstrap5.3-lite.css +11 -8
- package/styles/bootstrap5.3.css +11 -8
- package/styles/bootstrap5.css +11 -8
- package/styles/fabric-dark-lite.css +12 -9
- package/styles/fabric-dark.css +12 -9
- package/styles/fabric-lite.css +12 -9
- package/styles/fabric.css +12 -9
- package/styles/fluent-dark-lite.css +13 -10
- package/styles/fluent-dark.css +13 -10
- package/styles/fluent-lite.css +13 -10
- package/styles/fluent.css +13 -10
- package/styles/fluent2-lite.css +11 -8
- package/styles/fluent2.css +11 -8
- package/styles/highcontrast-light-lite.css +12 -9
- package/styles/highcontrast-light.css +12 -9
- package/styles/highcontrast-lite.css +12 -9
- package/styles/highcontrast.css +12 -9
- package/styles/material-dark-lite.css +12 -9
- package/styles/material-dark.css +12 -9
- package/styles/material-lite.css +12 -9
- package/styles/material.css +12 -9
- package/styles/material3-dark-lite.css +11 -8
- package/styles/material3-dark.css +11 -8
- package/styles/material3-lite.css +11 -8
- package/styles/material3.css +11 -8
- package/styles/recurrence-editor/_bds-definition.scss +1 -0
- package/styles/recurrence-editor/_bootstrap-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_bootstrap-definition.scss +1 -0
- package/styles/recurrence-editor/_bootstrap4-definition.scss +1 -0
- package/styles/recurrence-editor/_bootstrap5-definition.scss +1 -0
- package/styles/recurrence-editor/_bootstrap5.3-definition.scss +1 -0
- package/styles/recurrence-editor/_fabric-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_fabric-definition.scss +1 -0
- package/styles/recurrence-editor/_fluent-definition.scss +1 -0
- package/styles/recurrence-editor/_fluent2-definition.scss +1 -0
- package/styles/recurrence-editor/_fusionnew-definition.scss +1 -0
- package/styles/recurrence-editor/_highcontrast-definition.scss +1 -0
- package/styles/recurrence-editor/_highcontrast-light-definition.scss +1 -0
- package/styles/recurrence-editor/_layout.scss +5 -1
- package/styles/recurrence-editor/_material-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_material-definition.scss +1 -0
- package/styles/recurrence-editor/_material3-definition.scss +1 -0
- package/styles/recurrence-editor/_tailwind-definition.scss +1 -0
- package/styles/recurrence-editor/_tailwind3-definition.scss +1 -0
- package/styles/recurrence-editor/bds.css +3 -0
- package/styles/recurrence-editor/bootstrap-dark.css +4 -1
- package/styles/recurrence-editor/bootstrap.css +4 -1
- package/styles/recurrence-editor/bootstrap4.css +3 -0
- package/styles/recurrence-editor/bootstrap5-dark.css +3 -0
- package/styles/recurrence-editor/bootstrap5.3.css +3 -0
- package/styles/recurrence-editor/bootstrap5.css +3 -0
- package/styles/recurrence-editor/fabric-dark.css +4 -1
- package/styles/recurrence-editor/fabric.css +4 -1
- package/styles/recurrence-editor/fluent-dark.css +4 -1
- package/styles/recurrence-editor/fluent.css +4 -1
- package/styles/recurrence-editor/fluent2.css +3 -0
- package/styles/recurrence-editor/highcontrast-light.css +4 -1
- package/styles/recurrence-editor/highcontrast.css +4 -1
- package/styles/recurrence-editor/material-dark.css +4 -1
- package/styles/recurrence-editor/material.css +4 -1
- package/styles/recurrence-editor/material3-dark.css +3 -0
- package/styles/recurrence-editor/material3.css +3 -0
- package/styles/recurrence-editor/tailwind-dark.css +3 -0
- package/styles/recurrence-editor/tailwind.css +3 -0
- package/styles/recurrence-editor/tailwind3.css +3 -0
- package/styles/schedule/_bds-definition.scss +2 -0
- package/styles/schedule/_bootstrap-dark-definition.scss +2 -0
- package/styles/schedule/_bootstrap-definition.scss +2 -0
- package/styles/schedule/_bootstrap4-definition.scss +2 -0
- package/styles/schedule/_bootstrap5-definition.scss +2 -0
- package/styles/schedule/_bootstrap5.3-definition.scss +2 -0
- package/styles/schedule/_fabric-dark-definition.scss +2 -0
- package/styles/schedule/_fabric-definition.scss +2 -0
- package/styles/schedule/_fluent-definition.scss +3 -1
- package/styles/schedule/_fluent2-definition.scss +2 -0
- package/styles/schedule/_fusionnew-definition.scss +2 -0
- package/styles/schedule/_highcontrast-definition.scss +2 -0
- package/styles/schedule/_highcontrast-light-definition.scss +2 -0
- package/styles/schedule/_layout.scss +12 -11
- package/styles/schedule/_material-dark-definition.scss +2 -0
- package/styles/schedule/_material-definition.scss +2 -0
- package/styles/schedule/_material3-definition.scss +2 -0
- package/styles/schedule/_tailwind-definition.scss +2 -0
- package/styles/schedule/_tailwind3-definition.scss +2 -0
- package/styles/schedule/bds.css +8 -8
- package/styles/schedule/bootstrap-dark.css +8 -8
- package/styles/schedule/bootstrap.css +8 -8
- package/styles/schedule/bootstrap4.css +8 -8
- package/styles/schedule/bootstrap5-dark.css +8 -8
- package/styles/schedule/bootstrap5.3.css +8 -8
- package/styles/schedule/bootstrap5.css +8 -8
- package/styles/schedule/fabric-dark.css +8 -8
- package/styles/schedule/fabric.css +8 -8
- package/styles/schedule/fluent-dark.css +9 -9
- package/styles/schedule/fluent.css +9 -9
- package/styles/schedule/fluent2.css +8 -8
- package/styles/schedule/highcontrast-light.css +8 -8
- package/styles/schedule/highcontrast.css +8 -8
- package/styles/schedule/material-dark.css +8 -8
- package/styles/schedule/material.css +8 -8
- package/styles/schedule/material3-dark.css +8 -8
- package/styles/schedule/material3.css +8 -8
- package/styles/schedule/tailwind-dark.css +8 -8
- package/styles/schedule/tailwind.css +8 -8
- package/styles/schedule/tailwind3.css +8 -8
- package/styles/tailwind-dark-lite.css +11 -8
- package/styles/tailwind-dark.css +11 -8
- package/styles/tailwind-lite.css +11 -8
- package/styles/tailwind.css +11 -8
- package/styles/tailwind3-lite.css +11 -8
- package/styles/tailwind3.css +11 -8
|
@@ -65,6 +65,7 @@ var InlineEdit = /** @class */ (function () {
|
|
|
65
65
|
InlineEdit.prototype.eventEdit = function (args) {
|
|
66
66
|
var inlineSubject = args.element.querySelector('.' + cls.INLINE_SUBJECT_CLASS);
|
|
67
67
|
var subject;
|
|
68
|
+
addClass([args.element], cls.INLINE_EDIT_CLASS);
|
|
68
69
|
if (inlineSubject) {
|
|
69
70
|
subject = inlineSubject.value;
|
|
70
71
|
}
|
|
@@ -72,11 +73,9 @@ var InlineEdit = /** @class */ (function () {
|
|
|
72
73
|
var subEle = args.element.querySelector('.' + cls.SUBJECT_CLASS);
|
|
73
74
|
if (!isNullOrUndefined(subEle)) {
|
|
74
75
|
addClass([subEle], cls.DISABLE_CLASS);
|
|
75
|
-
subject = subEle.innerText;
|
|
76
|
-
}
|
|
77
|
-
else {
|
|
78
|
-
subject = args.data[this.parent.eventFields.subject];
|
|
79
76
|
}
|
|
77
|
+
subject = !isNullOrUndefined(args.data) && args.data[this.parent.eventFields.subject] ||
|
|
78
|
+
this.parent.eventSettings.fields.subject.default || this.parent.localeObj.getConstant('addTitle');
|
|
80
79
|
inlineSubject = this.inlineInputEle =
|
|
81
80
|
createElement('input', { className: cls.INLINE_SUBJECT_CLASS, attrs: { value: subject } });
|
|
82
81
|
if (closest(args.element, '.' + cls.MORE_POPUP_WRAPPER_CLASS)) {
|
|
@@ -98,7 +97,12 @@ var InlineEdit = /** @class */ (function () {
|
|
|
98
97
|
args.element.querySelector('.e-appointment-details').prepend(inlineSubject);
|
|
99
98
|
}
|
|
100
99
|
else {
|
|
101
|
-
|
|
100
|
+
if (subEle && this.parent.activeViewOptions && !this.parent.activeViewOptions.eventTemplate) {
|
|
101
|
+
innerWrapElement.insertBefore(inlineSubject, subEle);
|
|
102
|
+
}
|
|
103
|
+
else {
|
|
104
|
+
innerWrapElement.prepend(inlineSubject);
|
|
105
|
+
}
|
|
102
106
|
}
|
|
103
107
|
}
|
|
104
108
|
inlineSubject.focus();
|
|
@@ -225,7 +229,7 @@ var InlineEdit = /** @class */ (function () {
|
|
|
225
229
|
};
|
|
226
230
|
InlineEdit.prototype.createInlineAppointmentElement = function (inlineData) {
|
|
227
231
|
var inlineAppointmentElement = createElement('div', {
|
|
228
|
-
className: cls.APPOINTMENT_CLASS + ' ' + cls.INLINE_APPOINTMENT_CLASS
|
|
232
|
+
className: cls.APPOINTMENT_CLASS + ' ' + cls.INLINE_APPOINTMENT_CLASS + ' ' + cls.INLINE_EDIT_CLASS
|
|
229
233
|
});
|
|
230
234
|
var inlineDetails = createElement('div', { className: cls.APPOINTMENT_DETAILS });
|
|
231
235
|
inlineAppointmentElement.appendChild(inlineDetails);
|
|
@@ -251,6 +255,7 @@ var InlineEdit = /** @class */ (function () {
|
|
|
251
255
|
var inlineSubject = this.getInlineElement();
|
|
252
256
|
if (inlineSubject) {
|
|
253
257
|
var appointmentSubject = closest(inlineSubject, '.' + cls.APPOINTMENT_CLASS);
|
|
258
|
+
removeClass([appointmentSubject], cls.INLINE_EDIT_CLASS);
|
|
254
259
|
var subject = appointmentSubject.querySelector('.' + cls.SUBJECT_CLASS);
|
|
255
260
|
if (!isNullOrUndefined(subject)) {
|
|
256
261
|
removeClass([subject], cls.DISABLE_CLASS);
|
|
@@ -136,13 +136,15 @@ var MonthEvent = /** @class */ (function (_super) {
|
|
|
136
136
|
this.parent.notify(events.scrollUiUpdate, data);
|
|
137
137
|
if (this.parent.currentView === 'Month' && this.parent.showWeekNumber) {
|
|
138
138
|
var totalCells_1 = [].slice.call(this.parent.element.querySelectorAll('.e-content-wrap table tr td:first-child'));
|
|
139
|
-
var weekNumberCells = [].slice.call(this.parent.element.querySelectorAll('.' + cls.WEEK_NUMBER_CLASS));
|
|
139
|
+
var weekNumberCells = [].slice.call(this.parent.element.querySelectorAll('td' + '.' + cls.WEEK_NUMBER_CLASS));
|
|
140
140
|
weekNumberCells.forEach(function (cell, i) {
|
|
141
141
|
var height = totalCells_1[parseInt(i.toString(), 10)].offsetHeight;
|
|
142
142
|
setStyleAttribute(cell, { 'height': height + 'px' });
|
|
143
143
|
});
|
|
144
|
-
this.parent.element.querySelector('.' + cls.WEEK_NUMBER_WRAPPER_CLASS)
|
|
145
|
-
|
|
144
|
+
var weekNumberWrapper = this.parent.element.querySelector('.' + cls.WEEK_NUMBER_WRAPPER_CLASS);
|
|
145
|
+
if (!isNullOrUndefined(weekNumberWrapper)) {
|
|
146
|
+
weekNumberWrapper.scrollTop = this.parent.element.querySelector('.' + cls.CONTENT_WRAP_CLASS).scrollTop;
|
|
147
|
+
}
|
|
146
148
|
}
|
|
147
149
|
}
|
|
148
150
|
this.parent.renderTemplates();
|
|
@@ -499,6 +499,9 @@ var VerticalEvent = /** @class */ (function (_super) {
|
|
|
499
499
|
var record = this.splitEvent(eventObj, currentDates)[0];
|
|
500
500
|
var eStart = new Date(record[this.parent.eventFields.startTime].getTime());
|
|
501
501
|
var eEnd = new Date(record[this.parent.eventFields.endTime].getTime());
|
|
502
|
+
if (eStart.getTime() < this.parent.minDate.getTime() || eEnd.getTime() > this.parent.maxDate.getTime()) {
|
|
503
|
+
return;
|
|
504
|
+
}
|
|
502
505
|
var appWidth = 0;
|
|
503
506
|
var topValue = 1;
|
|
504
507
|
var isDateRange = currentDates[0].getTime() <= eStart.getTime() &&
|
|
@@ -12,7 +12,9 @@ export declare class YearEvent extends TimelineEvent {
|
|
|
12
12
|
private timelineYearViewEvents;
|
|
13
13
|
private updateSpannedEvents;
|
|
14
14
|
private timelineResourceEvents;
|
|
15
|
+
private shouldRenderAppointment;
|
|
15
16
|
private renderResourceEvent;
|
|
17
|
+
setMaxEventHeight(event: HTMLElement, cell: HTMLElement): void;
|
|
16
18
|
private renderEvent;
|
|
17
19
|
private renderMoreIndicator;
|
|
18
20
|
private createEventElement;
|
|
@@ -175,9 +175,10 @@ var YearEvent = /** @class */ (function (_super) {
|
|
|
175
175
|
return "continue";
|
|
176
176
|
}
|
|
177
177
|
}
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
178
|
+
if (this_1.maxHeight && this_1.parent.currentView.indexOf('Timeline') !== -1 && overlapIndex > 0) {
|
|
179
|
+
return "continue";
|
|
180
|
+
}
|
|
181
|
+
if (this_1.parent.rowAutoHeight || this_1.shouldRenderAppointment(overlapIndex, availedHeight)) {
|
|
181
182
|
this_1.renderEvent(eventWrapper, eventData, row, leftValue, rightValue, monthStart, dayIndex);
|
|
182
183
|
if (this_1.parent.rowAutoHeight || this_1.cellHeight > availedHeight) {
|
|
183
184
|
this_1.updateCellHeight(rowTd, availedHeight);
|
|
@@ -312,6 +313,19 @@ var YearEvent = /** @class */ (function (_super) {
|
|
|
312
313
|
});
|
|
313
314
|
}
|
|
314
315
|
};
|
|
316
|
+
YearEvent.prototype.shouldRenderAppointment = function (overlapIndex, availedHeight) {
|
|
317
|
+
var eventsPerRow = this.parent.rowAutoHeight ? 1 : this.parent.activeViewOptions.maxEventsPerRow;
|
|
318
|
+
if (this.parent.activeViewOptions.maxEventsPerRow && !this.parent.rowAutoHeight &&
|
|
319
|
+
!this.parent.eventSettings.enableIndicator) {
|
|
320
|
+
return overlapIndex < eventsPerRow;
|
|
321
|
+
}
|
|
322
|
+
else if (this.maxOrIndicator) {
|
|
323
|
+
return overlapIndex < 1;
|
|
324
|
+
}
|
|
325
|
+
else {
|
|
326
|
+
return this.cellHeight > availedHeight;
|
|
327
|
+
}
|
|
328
|
+
};
|
|
315
329
|
YearEvent.prototype.renderResourceEvent = function (wrapper, resource, month, index, monthStart) {
|
|
316
330
|
var eventWrapper = createElement('div', { className: cls.APPOINTMENT_WRAPPER_CLASS });
|
|
317
331
|
wrapper.appendChild(eventWrapper);
|
|
@@ -352,7 +366,10 @@ var YearEvent = /** @class */ (function (_super) {
|
|
|
352
366
|
return "continue";
|
|
353
367
|
}
|
|
354
368
|
}
|
|
355
|
-
if (this_2.
|
|
369
|
+
if (this_2.maxHeight && this_2.parent.currentView.indexOf('Timeline') !== -1 && overlapIndex > 0) {
|
|
370
|
+
return "continue";
|
|
371
|
+
}
|
|
372
|
+
if (this_2.parent.rowAutoHeight || this_2.shouldRenderAppointment(overlapIndex, availedHeight)) {
|
|
356
373
|
this_2.renderEvent(eventWrapper, eventData, month, leftValue, leftValue, monthStart, index);
|
|
357
374
|
this_2.updateCellHeight(td, availedHeight);
|
|
358
375
|
isSpannedCollection.push(eventData);
|
|
@@ -377,6 +394,10 @@ var YearEvent = /** @class */ (function (_super) {
|
|
|
377
394
|
break;
|
|
378
395
|
}
|
|
379
396
|
};
|
|
397
|
+
YearEvent.prototype.setMaxEventHeight = function (event, cell) {
|
|
398
|
+
var height = (cell.offsetHeight - this.cellHeader) - (this.maxHeight ? 0 : this.moreIndicatorHeight);
|
|
399
|
+
setStyleAttribute(event, { 'height': height + 'px', 'align-items': 'center' });
|
|
400
|
+
};
|
|
380
401
|
// eslint-disable-next-line max-len
|
|
381
402
|
YearEvent.prototype.renderEvent = function (wrapper, eventData, row, left, right, monthDate, rowIndex) {
|
|
382
403
|
var _this = this;
|
|
@@ -407,6 +428,9 @@ var YearEvent = /** @class */ (function (_super) {
|
|
|
407
428
|
setStyleAttribute(wrap, {
|
|
408
429
|
'width': width + 'px', 'height': this.eventHeight + 'px', 'left': left + 'px', 'right': right + 'px', 'top': top + 'px'
|
|
409
430
|
});
|
|
431
|
+
if (this.maxOrIndicator && this.parent.currentView.indexOf('Timeline') !== -1) {
|
|
432
|
+
this.setMaxEventHeight(wrap, rowTd);
|
|
433
|
+
}
|
|
410
434
|
if (!this.isResource && this.parent.rowAutoHeight && this.parent.activeViewOptions.orientation === 'Vertical') {
|
|
411
435
|
wrap.setAttribute('data-index', eventObj.Index.toString());
|
|
412
436
|
}
|
|
@@ -47,6 +47,10 @@ var EventTooltip = /** @class */ (function () {
|
|
|
47
47
|
return;
|
|
48
48
|
}
|
|
49
49
|
if (args.target.classList.contains(cls.RESOURCE_CELLS_CLASS) && this.parent.activeViewOptions.group.resources.length > 0) {
|
|
50
|
+
if (args.target.closest('.' + cls.LEFT_INDENT_WRAP_CLASS)) {
|
|
51
|
+
args.cancel = true;
|
|
52
|
+
return;
|
|
53
|
+
}
|
|
50
54
|
var resCollection = void 0;
|
|
51
55
|
if (this.parent.activeView.isTimelineView()) {
|
|
52
56
|
var index = parseInt(args.target.getAttribute('data-group-index'), 10);
|
|
@@ -1255,9 +1255,9 @@ var EventWindow = /** @class */ (function () {
|
|
|
1255
1255
|
var startObj = startDate.ej2_instances[0];
|
|
1256
1256
|
var endObj = endDate.ej2_instances[0];
|
|
1257
1257
|
startObj.min = this.parent.minDate;
|
|
1258
|
-
startObj.max = this.parent.maxDate;
|
|
1258
|
+
startObj.max = new Date(new Date(+this.parent.maxDate).setHours(23, 59, 59));
|
|
1259
1259
|
endObj.min = this.parent.minDate;
|
|
1260
|
-
endObj.max = this.parent.maxDate;
|
|
1260
|
+
endObj.max = new Date(new Date(+this.parent.maxDate).setHours(23, 59, 59));
|
|
1261
1261
|
startObj.dataBind();
|
|
1262
1262
|
endObj.dataBind();
|
|
1263
1263
|
}
|
|
@@ -1330,7 +1330,11 @@ var QuickPopups = /** @class */ (function () {
|
|
|
1330
1330
|
if (closest(target, '.' + cls.APPOINTMENT_CLASS + ',.' + cls.HEADER_CELLS_CLASS)) {
|
|
1331
1331
|
this.parent.removeNewEventElement();
|
|
1332
1332
|
}
|
|
1333
|
-
|
|
1333
|
+
var isQuickPopupClick = closest(target, '.' + cls.POPUP_WRAPPER_CLASS) ||
|
|
1334
|
+
closest(target, '.' + cls.QUICK_DIALOG_CLASS);
|
|
1335
|
+
var isEditButton = target.classList.contains(cls.EDIT_EVENT_CLASS) ||
|
|
1336
|
+
target.classList.contains(cls.EDIT_CLASS) || target.classList.contains(cls.EDIT_ICON_CLASS);
|
|
1337
|
+
if (isEditButton || !isQuickPopupClick && !closest(target, '.' + cls.MORE_POPUP_WRAPPER_CLASS) && (target.classList &&
|
|
1334
1338
|
!target.classList.contains(cls.MORE_INDICATOR_CLASS))
|
|
1335
1339
|
&& (!closest(target, '.' + cls.MORE_POPUP_WRAPPER_CLASS + '.' + cls.POPUP_OPEN))
|
|
1336
1340
|
&& !closest(target, '.' + cls.WORK_CELLS_CLASS)) {
|
|
@@ -78,11 +78,12 @@ var Agenda = /** @class */ (function (_super) {
|
|
|
78
78
|
this.parent.eventsProcessed = this.processAgendaEvents(eventCollection);
|
|
79
79
|
var agendaDate = util.resetTime(this.parent.selectedDate);
|
|
80
80
|
var tBody = this.element.querySelector('.' + cls.CONTENT_TABLE_CLASS + ' tbody');
|
|
81
|
+
var contentArea = closest(tBody, '.' + cls.CONTENT_WRAP_CLASS);
|
|
82
|
+
var scrollTop = contentArea.scrollTop;
|
|
81
83
|
util.removeChildren(tBody);
|
|
82
84
|
this.renderInitialContent(tBody, agendaDate);
|
|
83
85
|
this.wireEventActions();
|
|
84
|
-
|
|
85
|
-
contentArea.scrollTop = 1;
|
|
86
|
+
contentArea.scrollTop = scrollTop;
|
|
86
87
|
this.parent.notify(event.eventsLoaded, {});
|
|
87
88
|
if (!this.parent.activeViewOptions.allowVirtualScrolling) {
|
|
88
89
|
this.retainScrollPosition();
|
|
@@ -398,7 +398,7 @@ var VerticalView = /** @class */ (function (_super) {
|
|
|
398
398
|
case 'dateHeader':
|
|
399
399
|
if (this.parent.activeViewOptions.dateHeaderTemplate) {
|
|
400
400
|
templateName = 'dateHeaderTemplate';
|
|
401
|
-
var args = { date: date, type: type };
|
|
401
|
+
var args = { date: date, type: type, groupIndex: groupIndex };
|
|
402
402
|
var viewName = this.parent.activeViewOptions.dateHeaderTemplateName;
|
|
403
403
|
cntEle = [].slice.call(this.parent.getDateHeaderTemplate()(args, this.parent, templateName, templateId + viewName + templateName, false, undefined, undefined, this.parent.root));
|
|
404
404
|
}
|
|
@@ -401,10 +401,11 @@ var Year = /** @class */ (function (_super) {
|
|
|
401
401
|
var startDate = isDateColAvail ? dateCollection[0] : this.getStartDate();
|
|
402
402
|
var endDate = isDateColAvail ? dateCollection[dateCollection.length - 1] : this.getEndDate();
|
|
403
403
|
if (startDate.getFullYear() !== endDate.getFullYear()) {
|
|
404
|
-
return this.parent.globalize.formatDate(startDate, {
|
|
404
|
+
return this.parent.globalize.formatDate(startDate, { format: 'MMM y', calendar: this.parent.getCalendarMode() })
|
|
405
|
+
+ ' - ' + this.parent.globalize.formatDate(endDate, { format: 'MMM y', calendar: this.parent.getCalendarMode() });
|
|
405
406
|
}
|
|
406
407
|
else {
|
|
407
|
-
return this.parent.globalize.formatDate(isDateColAvail ? dateCollection[0] : date, { skeleton: 'y' });
|
|
408
|
+
return this.parent.globalize.formatDate(isDateColAvail ? dateCollection[0] : date, { skeleton: 'y', calendar: this.parent.getCalendarMode() });
|
|
408
409
|
}
|
|
409
410
|
};
|
|
410
411
|
Year.prototype.addEventListener = function () {
|
package/styles/bds-lite.css
CHANGED
|
@@ -1415,7 +1415,6 @@
|
|
|
1415
1415
|
}
|
|
1416
1416
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1417
1417
|
font-weight: 500;
|
|
1418
|
-
margin-left: 15px;
|
|
1419
1418
|
margin-right: auto;
|
|
1420
1419
|
}
|
|
1421
1420
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2295,6 +2294,10 @@
|
|
|
2295
2294
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2296
2295
|
text-align: right;
|
|
2297
2296
|
}
|
|
2297
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2298
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2299
|
+
padding: 8px 8px 8px 0;
|
|
2300
|
+
}
|
|
2298
2301
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2299
2302
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2300
2303
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3328,13 +3331,6 @@
|
|
|
3328
3331
|
left: 6px;
|
|
3329
3332
|
right: auto;
|
|
3330
3333
|
}
|
|
3331
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3332
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3333
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3334
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3335
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3336
|
-
margin-right: 10px;
|
|
3337
|
-
}
|
|
3338
3334
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3339
3335
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3340
3336
|
margin-left: 8px;
|
|
@@ -3520,6 +3516,10 @@
|
|
|
3520
3516
|
display: none;
|
|
3521
3517
|
}
|
|
3522
3518
|
|
|
3519
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3520
|
+
line-height: 1.4;
|
|
3521
|
+
}
|
|
3522
|
+
|
|
3523
3523
|
@media print {
|
|
3524
3524
|
.e-schedule .e-table-container {
|
|
3525
3525
|
display: block;
|
|
@@ -4222,6 +4222,9 @@
|
|
|
4222
4222
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4223
4223
|
padding: 0 8px 0 0;
|
|
4224
4224
|
}
|
|
4225
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4226
|
+
margin-right: 20px;
|
|
4227
|
+
}
|
|
4225
4228
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
4226
4229
|
width: 30px;
|
|
4227
4230
|
}
|
package/styles/bds.css
CHANGED
|
@@ -1415,7 +1415,6 @@
|
|
|
1415
1415
|
}
|
|
1416
1416
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1417
1417
|
font-weight: 500;
|
|
1418
|
-
margin-left: 15px;
|
|
1419
1418
|
margin-right: auto;
|
|
1420
1419
|
}
|
|
1421
1420
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2295,6 +2294,10 @@
|
|
|
2295
2294
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2296
2295
|
text-align: right;
|
|
2297
2296
|
}
|
|
2297
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2298
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2299
|
+
padding: 8px 8px 8px 0;
|
|
2300
|
+
}
|
|
2298
2301
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2299
2302
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2300
2303
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3328,13 +3331,6 @@
|
|
|
3328
3331
|
left: 6px;
|
|
3329
3332
|
right: auto;
|
|
3330
3333
|
}
|
|
3331
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3332
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3333
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3334
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3335
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3336
|
-
margin-right: 10px;
|
|
3337
|
-
}
|
|
3338
3334
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3339
3335
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3340
3336
|
margin-left: 8px;
|
|
@@ -3520,6 +3516,10 @@
|
|
|
3520
3516
|
display: none;
|
|
3521
3517
|
}
|
|
3522
3518
|
|
|
3519
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3520
|
+
line-height: 1.4;
|
|
3521
|
+
}
|
|
3522
|
+
|
|
3523
3523
|
@media print {
|
|
3524
3524
|
.e-schedule .e-table-container {
|
|
3525
3525
|
display: block;
|
|
@@ -4889,6 +4889,9 @@
|
|
|
4889
4889
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4890
4890
|
padding: 0 8px 0 0;
|
|
4891
4891
|
}
|
|
4892
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4893
|
+
margin-right: 20px;
|
|
4894
|
+
}
|
|
4892
4895
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
4893
4896
|
width: 30px;
|
|
4894
4897
|
}
|
|
@@ -1197,7 +1197,6 @@
|
|
|
1197
1197
|
}
|
|
1198
1198
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1199
1199
|
font-weight: 500;
|
|
1200
|
-
margin-left: 15px;
|
|
1201
1200
|
margin-right: auto;
|
|
1202
1201
|
}
|
|
1203
1202
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2077,6 +2076,10 @@
|
|
|
2077
2076
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2078
2077
|
text-align: right;
|
|
2079
2078
|
}
|
|
2079
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2080
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2081
|
+
padding: 5px;
|
|
2082
|
+
}
|
|
2080
2083
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2081
2084
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2082
2085
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3110,13 +3113,6 @@
|
|
|
3110
3113
|
left: 6px;
|
|
3111
3114
|
right: auto;
|
|
3112
3115
|
}
|
|
3113
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3114
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3115
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3116
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3117
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3118
|
-
margin-right: 10px;
|
|
3119
|
-
}
|
|
3120
3116
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3121
3117
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3122
3118
|
margin-left: 8px;
|
|
@@ -3302,6 +3298,10 @@
|
|
|
3302
3298
|
display: none;
|
|
3303
3299
|
}
|
|
3304
3300
|
|
|
3301
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3302
|
+
line-height: 1.4;
|
|
3303
|
+
}
|
|
3304
|
+
|
|
3305
3305
|
@media print {
|
|
3306
3306
|
.e-schedule .e-table-container {
|
|
3307
3307
|
display: block;
|
|
@@ -4004,6 +4004,9 @@
|
|
|
4004
4004
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4005
4005
|
padding: 0 8px 0 0;
|
|
4006
4006
|
}
|
|
4007
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4008
|
+
margin-right: 20px;
|
|
4009
|
+
}
|
|
4007
4010
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
4008
4011
|
width: 30px;
|
|
4009
4012
|
}
|
|
@@ -4042,7 +4045,7 @@
|
|
|
4042
4045
|
}
|
|
4043
4046
|
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
4044
4047
|
min-width: 30px;
|
|
4045
|
-
margin-bottom:
|
|
4048
|
+
margin-bottom: 23px;
|
|
4046
4049
|
}
|
|
4047
4050
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
4048
4051
|
float: left;
|
|
@@ -1197,7 +1197,6 @@
|
|
|
1197
1197
|
}
|
|
1198
1198
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1199
1199
|
font-weight: 500;
|
|
1200
|
-
margin-left: 15px;
|
|
1201
1200
|
margin-right: auto;
|
|
1202
1201
|
}
|
|
1203
1202
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2077,6 +2076,10 @@
|
|
|
2077
2076
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2078
2077
|
text-align: right;
|
|
2079
2078
|
}
|
|
2079
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2080
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2081
|
+
padding: 5px;
|
|
2082
|
+
}
|
|
2080
2083
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2081
2084
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2082
2085
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3110,13 +3113,6 @@
|
|
|
3110
3113
|
left: 6px;
|
|
3111
3114
|
right: auto;
|
|
3112
3115
|
}
|
|
3113
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3114
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3115
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3116
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3117
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3118
|
-
margin-right: 10px;
|
|
3119
|
-
}
|
|
3120
3116
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3121
3117
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3122
3118
|
margin-left: 8px;
|
|
@@ -3302,6 +3298,10 @@
|
|
|
3302
3298
|
display: none;
|
|
3303
3299
|
}
|
|
3304
3300
|
|
|
3301
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3302
|
+
line-height: 1.4;
|
|
3303
|
+
}
|
|
3304
|
+
|
|
3305
3305
|
@media print {
|
|
3306
3306
|
.e-schedule .e-table-container {
|
|
3307
3307
|
display: block;
|
|
@@ -4671,6 +4671,9 @@
|
|
|
4671
4671
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4672
4672
|
padding: 0 8px 0 0;
|
|
4673
4673
|
}
|
|
4674
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4675
|
+
margin-right: 20px;
|
|
4676
|
+
}
|
|
4674
4677
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
4675
4678
|
width: 30px;
|
|
4676
4679
|
}
|
|
@@ -4709,7 +4712,7 @@
|
|
|
4709
4712
|
}
|
|
4710
4713
|
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
4711
4714
|
min-width: 30px;
|
|
4712
|
-
margin-bottom:
|
|
4715
|
+
margin-bottom: 23px;
|
|
4713
4716
|
}
|
|
4714
4717
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
4715
4718
|
float: left;
|
|
@@ -1192,7 +1192,6 @@
|
|
|
1192
1192
|
}
|
|
1193
1193
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1194
1194
|
font-weight: 500;
|
|
1195
|
-
margin-left: 15px;
|
|
1196
1195
|
margin-right: auto;
|
|
1197
1196
|
}
|
|
1198
1197
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2072,6 +2071,10 @@
|
|
|
2072
2071
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2073
2072
|
text-align: right;
|
|
2074
2073
|
}
|
|
2074
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2075
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2076
|
+
padding: 5px;
|
|
2077
|
+
}
|
|
2075
2078
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2076
2079
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2077
2080
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3105,13 +3108,6 @@
|
|
|
3105
3108
|
left: 6px;
|
|
3106
3109
|
right: auto;
|
|
3107
3110
|
}
|
|
3108
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3109
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3110
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3111
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3112
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3113
|
-
margin-right: 10px;
|
|
3114
|
-
}
|
|
3115
3111
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3116
3112
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3117
3113
|
margin-left: 8px;
|
|
@@ -3297,6 +3293,10 @@
|
|
|
3297
3293
|
display: none;
|
|
3298
3294
|
}
|
|
3299
3295
|
|
|
3296
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3297
|
+
line-height: 1.4;
|
|
3298
|
+
}
|
|
3299
|
+
|
|
3300
3300
|
@media print {
|
|
3301
3301
|
.e-schedule .e-table-container {
|
|
3302
3302
|
display: block;
|
|
@@ -3999,6 +3999,9 @@
|
|
|
3999
3999
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4000
4000
|
padding: 0 8px 0 0;
|
|
4001
4001
|
}
|
|
4002
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4003
|
+
margin-right: 20px;
|
|
4004
|
+
}
|
|
4002
4005
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
4003
4006
|
width: 30px;
|
|
4004
4007
|
}
|
|
@@ -4037,7 +4040,7 @@
|
|
|
4037
4040
|
}
|
|
4038
4041
|
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
4039
4042
|
min-width: 30px;
|
|
4040
|
-
margin-bottom:
|
|
4043
|
+
margin-bottom: 23px;
|
|
4041
4044
|
}
|
|
4042
4045
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
4043
4046
|
float: left;
|
package/styles/bootstrap.css
CHANGED
|
@@ -1192,7 +1192,6 @@
|
|
|
1192
1192
|
}
|
|
1193
1193
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1194
1194
|
font-weight: 500;
|
|
1195
|
-
margin-left: 15px;
|
|
1196
1195
|
margin-right: auto;
|
|
1197
1196
|
}
|
|
1198
1197
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2072,6 +2071,10 @@
|
|
|
2072
2071
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2073
2072
|
text-align: right;
|
|
2074
2073
|
}
|
|
2074
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2075
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2076
|
+
padding: 5px;
|
|
2077
|
+
}
|
|
2075
2078
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2076
2079
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2077
2080
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3105,13 +3108,6 @@
|
|
|
3105
3108
|
left: 6px;
|
|
3106
3109
|
right: auto;
|
|
3107
3110
|
}
|
|
3108
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3109
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3110
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3111
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3112
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3113
|
-
margin-right: 10px;
|
|
3114
|
-
}
|
|
3115
3111
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3116
3112
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3117
3113
|
margin-left: 8px;
|
|
@@ -3297,6 +3293,10 @@
|
|
|
3297
3293
|
display: none;
|
|
3298
3294
|
}
|
|
3299
3295
|
|
|
3296
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3297
|
+
line-height: 1.4;
|
|
3298
|
+
}
|
|
3299
|
+
|
|
3300
3300
|
@media print {
|
|
3301
3301
|
.e-schedule .e-table-container {
|
|
3302
3302
|
display: block;
|
|
@@ -4666,6 +4666,9 @@
|
|
|
4666
4666
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4667
4667
|
padding: 0 8px 0 0;
|
|
4668
4668
|
}
|
|
4669
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4670
|
+
margin-right: 20px;
|
|
4671
|
+
}
|
|
4669
4672
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
4670
4673
|
width: 30px;
|
|
4671
4674
|
}
|
|
@@ -4704,7 +4707,7 @@
|
|
|
4704
4707
|
}
|
|
4705
4708
|
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
4706
4709
|
min-width: 30px;
|
|
4707
|
-
margin-bottom:
|
|
4710
|
+
margin-bottom: 23px;
|
|
4708
4711
|
}
|
|
4709
4712
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
4710
4713
|
float: left;
|
|
@@ -1239,7 +1239,6 @@
|
|
|
1239
1239
|
}
|
|
1240
1240
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1241
1241
|
font-weight: 500;
|
|
1242
|
-
margin-left: 15px;
|
|
1243
1242
|
margin-right: auto;
|
|
1244
1243
|
}
|
|
1245
1244
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2119,6 +2118,10 @@
|
|
|
2119
2118
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2120
2119
|
text-align: right;
|
|
2121
2120
|
}
|
|
2121
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2122
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2123
|
+
padding: 8px 8px 8px 0;
|
|
2124
|
+
}
|
|
2122
2125
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2123
2126
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2124
2127
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3152,13 +3155,6 @@
|
|
|
3152
3155
|
left: 6px;
|
|
3153
3156
|
right: auto;
|
|
3154
3157
|
}
|
|
3155
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3156
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3157
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3158
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3159
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3160
|
-
margin-right: 10px;
|
|
3161
|
-
}
|
|
3162
3158
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3163
3159
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3164
3160
|
margin-left: 8px;
|
|
@@ -3344,6 +3340,10 @@
|
|
|
3344
3340
|
display: none;
|
|
3345
3341
|
}
|
|
3346
3342
|
|
|
3343
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3344
|
+
line-height: 1.5;
|
|
3345
|
+
}
|
|
3346
|
+
|
|
3347
3347
|
@media print {
|
|
3348
3348
|
.e-schedule .e-table-container {
|
|
3349
3349
|
display: block;
|
|
@@ -4046,6 +4046,9 @@
|
|
|
4046
4046
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4047
4047
|
padding: 0 8px 0 0;
|
|
4048
4048
|
}
|
|
4049
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4050
|
+
margin-right: 20px;
|
|
4051
|
+
}
|
|
4049
4052
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
4050
4053
|
width: 30px;
|
|
4051
4054
|
}
|