@syncfusion/ej2-schedule 21.2.10 → 22.1.34
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/.eslintrc.json +1 -0
- package/CHANGELOG.md +14 -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 +50 -26
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +51 -27
- 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 +15 -15
- package/src/recurrence-editor/recurrence-editor-model.d.ts +8 -1
- package/src/recurrence-editor/recurrence-editor.d.ts +17 -0
- package/src/recurrence-editor/recurrence-editor.js +7 -4
- package/src/schedule/actions/keyboard.js +2 -0
- package/src/schedule/base/schedule-model.d.ts +18 -9
- package/src/schedule/base/schedule.d.ts +20 -11
- package/src/schedule/base/schedule.js +14 -5
- package/src/schedule/models/event-settings-model.d.ts +4 -2
- package/src/schedule/models/event-settings.d.ts +4 -2
- package/src/schedule/models/group-model.d.ts +2 -1
- package/src/schedule/models/group.d.ts +2 -1
- package/src/schedule/models/header-rows-model.d.ts +2 -1
- package/src/schedule/models/header-rows.d.ts +2 -1
- package/src/schedule/models/quick-info-templates-model.d.ts +6 -3
- package/src/schedule/models/quick-info-templates.d.ts +6 -3
- package/src/schedule/models/time-scale-model.d.ts +4 -2
- package/src/schedule/models/time-scale.d.ts +4 -2
- package/src/schedule/models/views-model.d.ts +18 -9
- package/src/schedule/models/views.d.ts +18 -9
- package/src/schedule/popups/event-tooltip.js +6 -3
- package/src/schedule/popups/event-window.js +18 -14
- package/src/schedule/popups/quick-popups.js +3 -1
- package/src/schedule/renderer/timeline-view.js +2 -1
- package/styles/bootstrap-dark.css +9 -12
- package/styles/bootstrap.css +9 -12
- package/styles/bootstrap4.css +10 -13
- package/styles/bootstrap5-dark.css +9 -12
- package/styles/bootstrap5.css +9 -12
- package/styles/fabric-dark.css +9 -12
- package/styles/fabric.css +9 -12
- package/styles/fluent-dark.css +9 -12
- package/styles/fluent.css +9 -12
- package/styles/highcontrast-light.css +10 -13
- package/styles/highcontrast.css +10 -13
- package/styles/material-dark.css +9 -12
- package/styles/material.css +9 -12
- package/styles/material3-dark.css +4597 -0
- package/styles/material3-dark.scss +4 -0
- package/styles/material3.css +4653 -0
- package/styles/material3.scss +4 -0
- package/styles/recurrence-editor/_material3-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_material3-definition.scss +13 -0
- package/styles/recurrence-editor/material3-dark.css +593 -0
- package/styles/recurrence-editor/material3-dark.scss +9 -0
- package/styles/recurrence-editor/material3.css +649 -0
- package/styles/recurrence-editor/material3.scss +9 -0
- package/styles/schedule/_bootstrap-dark-definition.scss +3 -2
- package/styles/schedule/_bootstrap-definition.scss +3 -2
- package/styles/schedule/_bootstrap4-definition.scss +3 -2
- package/styles/schedule/_bootstrap5-definition.scss +3 -2
- package/styles/schedule/_fabric-dark-definition.scss +3 -2
- package/styles/schedule/_fabric-definition.scss +3 -2
- package/styles/schedule/_fluent-definition.scss +3 -2
- package/styles/schedule/_fusionnew-definition.scss +3 -2
- package/styles/schedule/_highcontrast-definition.scss +3 -2
- package/styles/schedule/_highcontrast-light-definition.scss +3 -2
- package/styles/schedule/_layout.scss +27 -17
- package/styles/schedule/_material-dark-definition.scss +3 -2
- package/styles/schedule/_material-definition.scss +3 -2
- package/styles/schedule/_material3-dark-definition.scss +1 -0
- package/styles/schedule/_material3-definition.scss +292 -0
- package/styles/schedule/_tailwind-definition.scss +3 -2
- package/styles/schedule/_theme.scss +7 -2
- package/styles/schedule/bootstrap-dark.css +9 -12
- package/styles/schedule/bootstrap.css +9 -12
- package/styles/schedule/bootstrap4.css +10 -13
- package/styles/schedule/bootstrap5-dark.css +9 -12
- package/styles/schedule/bootstrap5.css +9 -12
- package/styles/schedule/fabric-dark.css +9 -12
- package/styles/schedule/fabric.css +9 -12
- package/styles/schedule/fluent-dark.css +9 -12
- package/styles/schedule/fluent.css +9 -12
- package/styles/schedule/highcontrast-light.css +10 -13
- package/styles/schedule/highcontrast.css +10 -13
- package/styles/schedule/icons/_material3-dark.scss +1 -0
- package/styles/schedule/material-dark.css +9 -12
- package/styles/schedule/material.css +9 -12
- package/styles/schedule/material3-dark.css +4191 -0
- package/styles/schedule/material3-dark.scss +16 -0
- package/styles/schedule/material3.css +4247 -0
- package/styles/schedule/material3.scss +17 -0
- package/styles/schedule/tailwind-dark.css +9 -12
- package/styles/schedule/tailwind.css +9 -12
- package/styles/tailwind-dark.css +9 -12
- package/styles/tailwind.css +9 -12
|
@@ -80,8 +80,9 @@ export interface ViewsModel {
|
|
|
80
80
|
* This template is only applicable for month view day cells.
|
|
81
81
|
*
|
|
82
82
|
* @default null
|
|
83
|
+
* @aspType string
|
|
83
84
|
*/
|
|
84
|
-
cellHeaderTemplate?: string;
|
|
85
|
+
cellHeaderTemplate?: string | Function;
|
|
85
86
|
|
|
86
87
|
/**
|
|
87
88
|
* It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the
|
|
@@ -89,15 +90,17 @@ export interface ViewsModel {
|
|
|
89
90
|
* It gets applied only to the view objects on which it is defined.
|
|
90
91
|
*
|
|
91
92
|
* @default null
|
|
93
|
+
* @aspType string
|
|
92
94
|
*/
|
|
93
|
-
dateHeaderTemplate?: string;
|
|
95
|
+
dateHeaderTemplate?: string | Function;
|
|
94
96
|
|
|
95
97
|
/**
|
|
96
98
|
* It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the header date range.
|
|
97
99
|
*
|
|
98
100
|
* @default null
|
|
101
|
+
* @aspType string
|
|
99
102
|
*/
|
|
100
|
-
dateRangeTemplate?: string;
|
|
103
|
+
dateRangeTemplate?: string | Function;
|
|
101
104
|
|
|
102
105
|
/**
|
|
103
106
|
* The template option which is used to render the customized work cells on the Schedule. Here, the
|
|
@@ -105,8 +108,9 @@ export interface ViewsModel {
|
|
|
105
108
|
* The field accessible via template is `date`. It gets applied only to the view objects on which it is defined.
|
|
106
109
|
*
|
|
107
110
|
* @default null
|
|
111
|
+
* @aspType string
|
|
108
112
|
*/
|
|
109
|
-
cellTemplate?: string;
|
|
113
|
+
cellTemplate?: string | Function;
|
|
110
114
|
|
|
111
115
|
/**
|
|
112
116
|
* It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the
|
|
@@ -114,8 +118,9 @@ export interface ViewsModel {
|
|
|
114
118
|
* This template is only applicable for year view header cells.
|
|
115
119
|
*
|
|
116
120
|
* @default null
|
|
121
|
+
* @aspType string
|
|
117
122
|
*/
|
|
118
|
-
dayHeaderTemplate?: string;
|
|
123
|
+
dayHeaderTemplate?: string | Function;
|
|
119
124
|
|
|
120
125
|
/**
|
|
121
126
|
* It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the
|
|
@@ -123,8 +128,9 @@ export interface ViewsModel {
|
|
|
123
128
|
* This template is only applicable for year view header cells.
|
|
124
129
|
*
|
|
125
130
|
* @default null
|
|
131
|
+
* @aspType string
|
|
126
132
|
*/
|
|
127
|
-
monthHeaderTemplate?: string;
|
|
133
|
+
monthHeaderTemplate?: string | Function;
|
|
128
134
|
|
|
129
135
|
/**
|
|
130
136
|
* It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto
|
|
@@ -133,8 +139,9 @@ export interface ViewsModel {
|
|
|
133
139
|
* whereas it will get applied only on the events of the view to which it is currently being defined.
|
|
134
140
|
*
|
|
135
141
|
* @default null
|
|
142
|
+
* @aspType string
|
|
136
143
|
*/
|
|
137
|
-
eventTemplate?: string;
|
|
144
|
+
eventTemplate?: string | Function;
|
|
138
145
|
|
|
139
146
|
/**
|
|
140
147
|
* When set to `false`, it hides the weekend days of a week from the Schedule.
|
|
@@ -212,8 +219,9 @@ export interface ViewsModel {
|
|
|
212
219
|
* It gets applied only to the view objects on which it is defined.
|
|
213
220
|
*
|
|
214
221
|
* @default null
|
|
222
|
+
* @aspType string
|
|
215
223
|
*/
|
|
216
|
-
resourceHeaderTemplate?: string;
|
|
224
|
+
resourceHeaderTemplate?: string | Function;
|
|
217
225
|
|
|
218
226
|
/**
|
|
219
227
|
* The template option which is used to render the customized header indent cell on the schedule. Here, the
|
|
@@ -221,8 +229,9 @@ export interface ViewsModel {
|
|
|
221
229
|
* It gets applied only to the view objects on which it is defined.
|
|
222
230
|
*
|
|
223
231
|
* @default null
|
|
232
|
+
* @aspType string
|
|
224
233
|
*/
|
|
225
|
-
headerIndentTemplate?: string;
|
|
234
|
+
headerIndentTemplate?: string | Function;
|
|
226
235
|
|
|
227
236
|
/**
|
|
228
237
|
* By default, Schedule follows the time-format as per the default culture assigned to it.
|
|
@@ -73,46 +73,52 @@ export declare class Views extends ChildProperty<Views> {
|
|
|
73
73
|
* This template is only applicable for month view day cells.
|
|
74
74
|
*
|
|
75
75
|
* @default null
|
|
76
|
+
* @aspType string
|
|
76
77
|
*/
|
|
77
|
-
cellHeaderTemplate: string;
|
|
78
|
+
cellHeaderTemplate: string | Function;
|
|
78
79
|
/**
|
|
79
80
|
* It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the
|
|
80
81
|
* date header cells. The field that can be accessed via this template is `date`.
|
|
81
82
|
* It gets applied only to the view objects on which it is defined.
|
|
82
83
|
*
|
|
83
84
|
* @default null
|
|
85
|
+
* @aspType string
|
|
84
86
|
*/
|
|
85
|
-
dateHeaderTemplate: string;
|
|
87
|
+
dateHeaderTemplate: string | Function;
|
|
86
88
|
/**
|
|
87
89
|
* It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the header date range.
|
|
88
90
|
*
|
|
89
91
|
* @default null
|
|
92
|
+
* @aspType string
|
|
90
93
|
*/
|
|
91
|
-
dateRangeTemplate: string;
|
|
94
|
+
dateRangeTemplate: string | Function;
|
|
92
95
|
/**
|
|
93
96
|
* The template option which is used to render the customized work cells on the Schedule. Here, the
|
|
94
97
|
* template accepts either the string or HTMLElement as template design and then the parsed design is displayed onto the work cells.
|
|
95
98
|
* The field accessible via template is `date`. It gets applied only to the view objects on which it is defined.
|
|
96
99
|
*
|
|
97
100
|
* @default null
|
|
101
|
+
* @aspType string
|
|
98
102
|
*/
|
|
99
|
-
cellTemplate: string;
|
|
103
|
+
cellTemplate: string | Function;
|
|
100
104
|
/**
|
|
101
105
|
* It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the
|
|
102
106
|
* Year view day cell header.
|
|
103
107
|
* This template is only applicable for year view header cells.
|
|
104
108
|
*
|
|
105
109
|
* @default null
|
|
110
|
+
* @aspType string
|
|
106
111
|
*/
|
|
107
|
-
dayHeaderTemplate: string;
|
|
112
|
+
dayHeaderTemplate: string | Function;
|
|
108
113
|
/**
|
|
109
114
|
* It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the
|
|
110
115
|
* Year view day cell header.
|
|
111
116
|
* This template is only applicable for year view header cells.
|
|
112
117
|
*
|
|
113
118
|
* @default null
|
|
119
|
+
* @aspType string
|
|
114
120
|
*/
|
|
115
|
-
monthHeaderTemplate: string;
|
|
121
|
+
monthHeaderTemplate: string | Function;
|
|
116
122
|
/**
|
|
117
123
|
* It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto
|
|
118
124
|
* the event background. All the event fields mapped to Schedule from dataSource can be accessed within this template code.
|
|
@@ -120,8 +126,9 @@ export declare class Views extends ChildProperty<Views> {
|
|
|
120
126
|
* whereas it will get applied only on the events of the view to which it is currently being defined.
|
|
121
127
|
*
|
|
122
128
|
* @default null
|
|
129
|
+
* @aspType string
|
|
123
130
|
*/
|
|
124
|
-
eventTemplate: string;
|
|
131
|
+
eventTemplate: string | Function;
|
|
125
132
|
/**
|
|
126
133
|
* When set to `false`, it hides the weekend days of a week from the Schedule.
|
|
127
134
|
* The days which are not defined in the working days collection are usually treated as weekend days.
|
|
@@ -190,16 +197,18 @@ export declare class Views extends ChildProperty<Views> {
|
|
|
190
197
|
* It gets applied only to the view objects on which it is defined.
|
|
191
198
|
*
|
|
192
199
|
* @default null
|
|
200
|
+
* @aspType string
|
|
193
201
|
*/
|
|
194
|
-
resourceHeaderTemplate: string;
|
|
202
|
+
resourceHeaderTemplate: string | Function;
|
|
195
203
|
/**
|
|
196
204
|
* The template option which is used to render the customized header indent cell on the schedule. Here, the
|
|
197
205
|
* template accepts either the string or HTMLElement as template design and then the parsed design is displayed onto the header indent cell.
|
|
198
206
|
* It gets applied only to the view objects on which it is defined.
|
|
199
207
|
*
|
|
200
208
|
* @default null
|
|
209
|
+
* @aspType string
|
|
201
210
|
*/
|
|
202
|
-
headerIndentTemplate: string;
|
|
211
|
+
headerIndentTemplate: string | Function;
|
|
203
212
|
/**
|
|
204
213
|
* By default, Schedule follows the time-format as per the default culture assigned to it.
|
|
205
214
|
* It is also possible to manually set specific time format by using the `timeFormat` property.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
|
-
import { isNullOrUndefined, append, createElement, addClass } from '@syncfusion/ej2-base';
|
|
2
|
+
import { isNullOrUndefined, append, createElement, addClass, initializeCSPTemplate } from '@syncfusion/ej2-base';
|
|
3
3
|
import { Tooltip } from '@syncfusion/ej2-popups';
|
|
4
4
|
import * as cls from '../base/css-constant';
|
|
5
5
|
import * as util from '../base/util';
|
|
@@ -116,11 +116,14 @@ var EventTooltip = /** @class */ (function () {
|
|
|
116
116
|
}
|
|
117
117
|
var tooltipTime = (record[fields.isAllDay]) ? this.parent.localeObj.getConstant('allDay') :
|
|
118
118
|
(startTime + ' - ' + endTime);
|
|
119
|
-
var
|
|
119
|
+
var content_1 = '<div><div class="e-subject">' + tooltipSubject + '</div>' +
|
|
120
120
|
'<div class="e-location">' + tooltipLocation + '</div>' +
|
|
121
121
|
'<div class="e-details">' + tooltipDetails + '</div>' +
|
|
122
122
|
'<div class="e-all-day">' + tooltipTime + '</div></div>';
|
|
123
|
-
|
|
123
|
+
var contentTemp = function () {
|
|
124
|
+
return content_1;
|
|
125
|
+
};
|
|
126
|
+
this.setContent(initializeCSPTemplate(contentTemp));
|
|
124
127
|
}
|
|
125
128
|
this.parent.renderTemplates();
|
|
126
129
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
2
|
import { createElement, isNullOrUndefined, addClass, remove, EventHandler, extend, append, detach } from '@syncfusion/ej2-base';
|
|
3
|
-
import { cldrData, removeClass, getValue, getDefaultDateObject, closest, SanitizeHtmlHelper } from '@syncfusion/ej2-base';
|
|
3
|
+
import { cldrData, removeClass, getValue, getDefaultDateObject, closest, SanitizeHtmlHelper, initializeCSPTemplate } from '@syncfusion/ej2-base';
|
|
4
4
|
import { Query, Deferred } from '@syncfusion/ej2-data';
|
|
5
5
|
import { CheckBox, Button } from '@syncfusion/ej2-buttons';
|
|
6
6
|
import { Dialog } from '@syncfusion/ej2-popups';
|
|
@@ -430,8 +430,10 @@ var EventWindow = /** @class */ (function () {
|
|
|
430
430
|
var resourceDiv = this.createDivElement(value + '-container' + ' ' + 'e-resources');
|
|
431
431
|
var resourceInput = this.createInputElement(value + ' ' + EVENT_FIELD, fieldName);
|
|
432
432
|
resourceDiv.appendChild(resourceInput);
|
|
433
|
-
|
|
434
|
-
resourceData.colorField +
|
|
433
|
+
function resourceTemplate(data) {
|
|
434
|
+
return "<div class=\"e-resource-template\"><div class=\"e-resource-color\" style=\"background-color:" + data[resourceData.colorField] + "\"></div><div class=\"e-resource-text\">" + data[resourceData.textField] + "</div></div>";
|
|
435
|
+
}
|
|
436
|
+
initializeCSPTemplate(resourceTemplate, resourceData);
|
|
435
437
|
if (resourceData.allowMultiple) {
|
|
436
438
|
var listObj = new MultiSelect({
|
|
437
439
|
enableRtl: this.parent.enableRtl,
|
|
@@ -681,16 +683,18 @@ var EventWindow = /** @class */ (function () {
|
|
|
681
683
|
return labelText;
|
|
682
684
|
};
|
|
683
685
|
EventWindow.prototype.onChange = function (args) {
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
686
|
+
if (args.event && args.event.target) {
|
|
687
|
+
var targetSelector = "." + cls.EVENT_WINDOW_ALL_DAY_CLASS + ",." + cls.TIME_ZONE_CLASS + ",." + cls.EVENT_WINDOW_REPEAT_CLASS;
|
|
688
|
+
var target = closest(args.event.target, targetSelector);
|
|
689
|
+
if (target.classList.contains(cls.EVENT_WINDOW_ALL_DAY_CLASS)) {
|
|
690
|
+
this.onAllDayChange(args.checked);
|
|
691
|
+
}
|
|
692
|
+
else if (target.classList.contains(cls.TIME_ZONE_CLASS)) {
|
|
693
|
+
this.timezoneChangeStyle(args.checked);
|
|
694
|
+
}
|
|
695
|
+
else if (target.classList.contains(cls.EVENT_WINDOW_REPEAT_CLASS)) {
|
|
696
|
+
this.onRepeatChange(args.checked);
|
|
697
|
+
}
|
|
694
698
|
}
|
|
695
699
|
};
|
|
696
700
|
EventWindow.prototype.renderRepeatDialog = function () {
|
|
@@ -1525,7 +1529,7 @@ var EventWindow = /** @class */ (function () {
|
|
|
1525
1529
|
this.parent.quickPopup.openRecurrenceValidationAlert('sameDayAlert');
|
|
1526
1530
|
return true;
|
|
1527
1531
|
}
|
|
1528
|
-
else if (!(previousEndTime.getTime() <= currentStartTime.getTime() && nextStartTime.getTime()
|
|
1532
|
+
else if (!(previousEndTime.getTime() <= currentStartTime.getTime() && nextStartTime.getTime() >=
|
|
1529
1533
|
currentEndTime.getTime()) || (util.resetTime(nextEndTime).getTime() <
|
|
1530
1534
|
util.resetTime(currentStartTime).getTime()) ||
|
|
1531
1535
|
(util.resetTime(previousStartTime).getTime() > util.resetTime(currentEndTime).getTime()) ||
|
|
@@ -1325,7 +1325,9 @@ var QuickPopups = /** @class */ (function () {
|
|
|
1325
1325
|
this.dialogEvent = event;
|
|
1326
1326
|
}
|
|
1327
1327
|
this.quickPopupHide();
|
|
1328
|
-
|
|
1328
|
+
if (isNullOrUndefined(event) || (!isNullOrUndefined(event) && event.action !== 'escape')) {
|
|
1329
|
+
this.parent.eventBase.focusElement();
|
|
1330
|
+
}
|
|
1329
1331
|
};
|
|
1330
1332
|
QuickPopups.prototype.addEventListener = function () {
|
|
1331
1333
|
this.parent.on(event.cellClick, this.cellClick, this);
|
|
@@ -161,7 +161,8 @@ var TimelineViews = /** @class */ (function (_super) {
|
|
|
161
161
|
else {
|
|
162
162
|
var endHour = this.getEndHour();
|
|
163
163
|
var end = (endHour.getHours() === 0) ? 24 : endHour.getHours();
|
|
164
|
-
diffInMinutes = diffInMinutes + ((currentDateIndex[0]) * (((end - startHour.getHours()) * 60) +
|
|
164
|
+
diffInMinutes = diffInMinutes + ((currentDateIndex[0]) * (((end - startHour.getHours()) * 60) +
|
|
165
|
+
(endHour.getMinutes() - startHour.getMinutes())));
|
|
165
166
|
}
|
|
166
167
|
}
|
|
167
168
|
}
|
|
@@ -1668,20 +1668,13 @@
|
|
|
1668
1668
|
}
|
|
1669
1669
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-icon,
|
|
1670
1670
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-edit-icon {
|
|
1671
|
-
line-height:
|
|
1671
|
+
line-height: 22px;
|
|
1672
1672
|
padding: 0 5px;
|
|
1673
1673
|
}
|
|
1674
|
-
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-indicator {
|
|
1675
|
-
display: block;
|
|
1676
|
-
}
|
|
1677
1674
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-left-icon,
|
|
1678
1675
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-right-icon {
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
padding-right: 7px;
|
|
1682
|
-
}
|
|
1683
|
-
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-right-icon {
|
|
1684
|
-
padding-right: 5px;
|
|
1676
|
+
line-height: 22px;
|
|
1677
|
+
padding: 0 2px;
|
|
1685
1678
|
}
|
|
1686
1679
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-appointment-border, .e-schedule .e-timeline-year-view .e-event-table .e-appointment:focus {
|
|
1687
1680
|
border: 0;
|
|
@@ -2549,9 +2542,9 @@
|
|
|
2549
2542
|
height: 35px;
|
|
2550
2543
|
}
|
|
2551
2544
|
.e-bigger .e-schedule .e-month-view .e-resource-cells,
|
|
2552
|
-
.e-bigger .e-schedule .e-month-view .e-date-header-wrap,
|
|
2545
|
+
.e-bigger .e-schedule .e-month-view .e-date-header-wrap table td,
|
|
2553
2546
|
.e-bigger.e-schedule .e-month-view .e-resource-cells,
|
|
2554
|
-
.e-bigger.e-schedule .e-month-view .e-date-header-wrap {
|
|
2547
|
+
.e-bigger.e-schedule .e-month-view .e-date-header-wrap table td {
|
|
2555
2548
|
font-size: 14px;
|
|
2556
2549
|
}
|
|
2557
2550
|
.e-bigger .e-schedule .e-month-view .e-content-wrap,
|
|
@@ -2568,6 +2561,10 @@
|
|
|
2568
2561
|
.e-bigger.e-schedule .e-month-view .e-m-day {
|
|
2569
2562
|
font-size: 14px;
|
|
2570
2563
|
}
|
|
2564
|
+
.e-bigger .e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar,
|
|
2565
|
+
.e-bigger.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
|
|
2566
|
+
min-width: 306px;
|
|
2567
|
+
}
|
|
2571
2568
|
|
|
2572
2569
|
.e-schedule.e-multi-drag .e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:focus {
|
|
2573
2570
|
border: 1px solid #fff;
|
package/styles/bootstrap.css
CHANGED
|
@@ -1668,20 +1668,13 @@
|
|
|
1668
1668
|
}
|
|
1669
1669
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-icon,
|
|
1670
1670
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-edit-icon {
|
|
1671
|
-
line-height:
|
|
1671
|
+
line-height: 22px;
|
|
1672
1672
|
padding: 0 5px;
|
|
1673
1673
|
}
|
|
1674
|
-
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-indicator {
|
|
1675
|
-
display: block;
|
|
1676
|
-
}
|
|
1677
1674
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-left-icon,
|
|
1678
1675
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-right-icon {
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
padding-right: 7px;
|
|
1682
|
-
}
|
|
1683
|
-
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-right-icon {
|
|
1684
|
-
padding-right: 5px;
|
|
1676
|
+
line-height: 22px;
|
|
1677
|
+
padding: 0 2px;
|
|
1685
1678
|
}
|
|
1686
1679
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-appointment-border, .e-schedule .e-timeline-year-view .e-event-table .e-appointment:focus {
|
|
1687
1680
|
border: 0;
|
|
@@ -2549,9 +2542,9 @@
|
|
|
2549
2542
|
height: 35px;
|
|
2550
2543
|
}
|
|
2551
2544
|
.e-bigger .e-schedule .e-month-view .e-resource-cells,
|
|
2552
|
-
.e-bigger .e-schedule .e-month-view .e-date-header-wrap,
|
|
2545
|
+
.e-bigger .e-schedule .e-month-view .e-date-header-wrap table td,
|
|
2553
2546
|
.e-bigger.e-schedule .e-month-view .e-resource-cells,
|
|
2554
|
-
.e-bigger.e-schedule .e-month-view .e-date-header-wrap {
|
|
2547
|
+
.e-bigger.e-schedule .e-month-view .e-date-header-wrap table td {
|
|
2555
2548
|
font-size: 14px;
|
|
2556
2549
|
}
|
|
2557
2550
|
.e-bigger .e-schedule .e-month-view .e-content-wrap,
|
|
@@ -2568,6 +2561,10 @@
|
|
|
2568
2561
|
.e-bigger.e-schedule .e-month-view .e-m-day {
|
|
2569
2562
|
font-size: 14px;
|
|
2570
2563
|
}
|
|
2564
|
+
.e-bigger .e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar,
|
|
2565
|
+
.e-bigger.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
|
|
2566
|
+
min-width: 306px;
|
|
2567
|
+
}
|
|
2571
2568
|
|
|
2572
2569
|
.e-schedule.e-multi-drag .e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:focus {
|
|
2573
2570
|
border: 1px solid rgba(0, 0, 0, 0.5);
|
package/styles/bootstrap4.css
CHANGED
|
@@ -1747,20 +1747,13 @@
|
|
|
1747
1747
|
}
|
|
1748
1748
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-icon,
|
|
1749
1749
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-edit-icon {
|
|
1750
|
-
line-height:
|
|
1750
|
+
line-height: 22px;
|
|
1751
1751
|
padding: 0 5px;
|
|
1752
1752
|
}
|
|
1753
|
-
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-indicator {
|
|
1754
|
-
display: block;
|
|
1755
|
-
}
|
|
1756
1753
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-left-icon,
|
|
1757
1754
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-right-icon {
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
padding-right: 7px;
|
|
1761
|
-
}
|
|
1762
|
-
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-right-icon {
|
|
1763
|
-
padding-right: 5px;
|
|
1755
|
+
line-height: 22px;
|
|
1756
|
+
padding: 0 2px;
|
|
1764
1757
|
}
|
|
1765
1758
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-appointment-border, .e-schedule .e-timeline-year-view .e-event-table .e-appointment:focus {
|
|
1766
1759
|
border: 0;
|
|
@@ -2628,9 +2621,9 @@
|
|
|
2628
2621
|
height: 35px;
|
|
2629
2622
|
}
|
|
2630
2623
|
.e-bigger .e-schedule .e-month-view .e-resource-cells,
|
|
2631
|
-
.e-bigger .e-schedule .e-month-view .e-date-header-wrap,
|
|
2624
|
+
.e-bigger .e-schedule .e-month-view .e-date-header-wrap table td,
|
|
2632
2625
|
.e-bigger.e-schedule .e-month-view .e-resource-cells,
|
|
2633
|
-
.e-bigger.e-schedule .e-month-view .e-date-header-wrap {
|
|
2626
|
+
.e-bigger.e-schedule .e-month-view .e-date-header-wrap table td {
|
|
2634
2627
|
font-size: 16px;
|
|
2635
2628
|
}
|
|
2636
2629
|
.e-bigger .e-schedule .e-month-view .e-content-wrap,
|
|
@@ -2647,6 +2640,10 @@
|
|
|
2647
2640
|
.e-bigger.e-schedule .e-month-view .e-m-day {
|
|
2648
2641
|
font-size: 14px;
|
|
2649
2642
|
}
|
|
2643
|
+
.e-bigger .e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar,
|
|
2644
|
+
.e-bigger.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
|
|
2645
|
+
min-width: 306px;
|
|
2646
|
+
}
|
|
2650
2647
|
|
|
2651
2648
|
.e-schedule.e-multi-drag .e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:focus {
|
|
2652
2649
|
border: 1px solid rgba(0, 0, 0, 0.5);
|
|
@@ -3875,7 +3872,7 @@
|
|
|
3875
3872
|
border-top: 1px solid #007bff;
|
|
3876
3873
|
}
|
|
3877
3874
|
.e-schedule .e-vertical-view .e-previous-timeline {
|
|
3878
|
-
border-top: 1px
|
|
3875
|
+
border-top: 1px dashed #007bff;
|
|
3879
3876
|
}
|
|
3880
3877
|
.e-schedule .e-vertical-view.e-by-date .e-date-header-wrap table tbody td.e-header-cells {
|
|
3881
3878
|
border-bottom-width: 1px;
|
|
@@ -1721,20 +1721,13 @@
|
|
|
1721
1721
|
}
|
|
1722
1722
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-icon,
|
|
1723
1723
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-edit-icon {
|
|
1724
|
-
line-height:
|
|
1724
|
+
line-height: 26px;
|
|
1725
1725
|
padding: 0 5px;
|
|
1726
1726
|
}
|
|
1727
|
-
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-indicator {
|
|
1728
|
-
display: block;
|
|
1729
|
-
}
|
|
1730
1727
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-left-icon,
|
|
1731
1728
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-right-icon {
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
padding-right: 7px;
|
|
1735
|
-
}
|
|
1736
|
-
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-right-icon {
|
|
1737
|
-
padding-right: 5px;
|
|
1729
|
+
line-height: 26px;
|
|
1730
|
+
padding: 0 2px;
|
|
1738
1731
|
}
|
|
1739
1732
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-appointment-border, .e-schedule .e-timeline-year-view .e-event-table .e-appointment:focus {
|
|
1740
1733
|
border: 0;
|
|
@@ -2602,9 +2595,9 @@
|
|
|
2602
2595
|
height: 38px;
|
|
2603
2596
|
}
|
|
2604
2597
|
.e-bigger .e-schedule .e-month-view .e-resource-cells,
|
|
2605
|
-
.e-bigger .e-schedule .e-month-view .e-date-header-wrap,
|
|
2598
|
+
.e-bigger .e-schedule .e-month-view .e-date-header-wrap table td,
|
|
2606
2599
|
.e-bigger.e-schedule .e-month-view .e-resource-cells,
|
|
2607
|
-
.e-bigger.e-schedule .e-month-view .e-date-header-wrap {
|
|
2600
|
+
.e-bigger.e-schedule .e-month-view .e-date-header-wrap table td {
|
|
2608
2601
|
font-size: 16px;
|
|
2609
2602
|
}
|
|
2610
2603
|
.e-bigger .e-schedule .e-month-view .e-content-wrap,
|
|
@@ -2621,6 +2614,10 @@
|
|
|
2621
2614
|
.e-bigger.e-schedule .e-month-view .e-m-day {
|
|
2622
2615
|
font-size: 14px;
|
|
2623
2616
|
}
|
|
2617
|
+
.e-bigger .e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar,
|
|
2618
|
+
.e-bigger.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
|
|
2619
|
+
min-width: 306px;
|
|
2620
|
+
}
|
|
2624
2621
|
|
|
2625
2622
|
.e-schedule.e-multi-drag .e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:focus {
|
|
2626
2623
|
border: 1px solid rgba(68, 76, 84, 0.5);
|
package/styles/bootstrap5.css
CHANGED
|
@@ -1721,20 +1721,13 @@
|
|
|
1721
1721
|
}
|
|
1722
1722
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-icon,
|
|
1723
1723
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-edit-icon {
|
|
1724
|
-
line-height:
|
|
1724
|
+
line-height: 26px;
|
|
1725
1725
|
padding: 0 5px;
|
|
1726
1726
|
}
|
|
1727
|
-
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-indicator {
|
|
1728
|
-
display: block;
|
|
1729
|
-
}
|
|
1730
1727
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-left-icon,
|
|
1731
1728
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-right-icon {
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
padding-right: 7px;
|
|
1735
|
-
}
|
|
1736
|
-
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-right-icon {
|
|
1737
|
-
padding-right: 5px;
|
|
1729
|
+
line-height: 26px;
|
|
1730
|
+
padding: 0 2px;
|
|
1738
1731
|
}
|
|
1739
1732
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-appointment-border, .e-schedule .e-timeline-year-view .e-event-table .e-appointment:focus {
|
|
1740
1733
|
border: 0;
|
|
@@ -2602,9 +2595,9 @@
|
|
|
2602
2595
|
height: 38px;
|
|
2603
2596
|
}
|
|
2604
2597
|
.e-bigger .e-schedule .e-month-view .e-resource-cells,
|
|
2605
|
-
.e-bigger .e-schedule .e-month-view .e-date-header-wrap,
|
|
2598
|
+
.e-bigger .e-schedule .e-month-view .e-date-header-wrap table td,
|
|
2606
2599
|
.e-bigger.e-schedule .e-month-view .e-resource-cells,
|
|
2607
|
-
.e-bigger.e-schedule .e-month-view .e-date-header-wrap {
|
|
2600
|
+
.e-bigger.e-schedule .e-month-view .e-date-header-wrap table td {
|
|
2608
2601
|
font-size: 16px;
|
|
2609
2602
|
}
|
|
2610
2603
|
.e-bigger .e-schedule .e-month-view .e-content-wrap,
|
|
@@ -2621,6 +2614,10 @@
|
|
|
2621
2614
|
.e-bigger.e-schedule .e-month-view .e-m-day {
|
|
2622
2615
|
font-size: 14px;
|
|
2623
2616
|
}
|
|
2617
|
+
.e-bigger .e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar,
|
|
2618
|
+
.e-bigger.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
|
|
2619
|
+
min-width: 306px;
|
|
2620
|
+
}
|
|
2624
2621
|
|
|
2625
2622
|
.e-schedule.e-multi-drag .e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:focus {
|
|
2626
2623
|
border: 1px solid rgba(222, 226, 230, 0.5);
|
package/styles/fabric-dark.css
CHANGED
|
@@ -1635,20 +1635,13 @@
|
|
|
1635
1635
|
}
|
|
1636
1636
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-icon,
|
|
1637
1637
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-edit-icon {
|
|
1638
|
-
line-height:
|
|
1638
|
+
line-height: 22px;
|
|
1639
1639
|
padding: 0 5px;
|
|
1640
1640
|
}
|
|
1641
|
-
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-indicator {
|
|
1642
|
-
display: block;
|
|
1643
|
-
}
|
|
1644
1641
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-left-icon,
|
|
1645
1642
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-right-icon {
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
padding-right: 7px;
|
|
1649
|
-
}
|
|
1650
|
-
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-right-icon {
|
|
1651
|
-
padding-right: 5px;
|
|
1643
|
+
line-height: 22px;
|
|
1644
|
+
padding: 0 2px;
|
|
1652
1645
|
}
|
|
1653
1646
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-appointment-border, .e-schedule .e-timeline-year-view .e-event-table .e-appointment:focus {
|
|
1654
1647
|
border: 0;
|
|
@@ -2516,9 +2509,9 @@
|
|
|
2516
2509
|
height: 35px;
|
|
2517
2510
|
}
|
|
2518
2511
|
.e-bigger .e-schedule .e-month-view .e-resource-cells,
|
|
2519
|
-
.e-bigger .e-schedule .e-month-view .e-date-header-wrap,
|
|
2512
|
+
.e-bigger .e-schedule .e-month-view .e-date-header-wrap table td,
|
|
2520
2513
|
.e-bigger.e-schedule .e-month-view .e-resource-cells,
|
|
2521
|
-
.e-bigger.e-schedule .e-month-view .e-date-header-wrap {
|
|
2514
|
+
.e-bigger.e-schedule .e-month-view .e-date-header-wrap table td {
|
|
2522
2515
|
font-size: 14px;
|
|
2523
2516
|
}
|
|
2524
2517
|
.e-bigger .e-schedule .e-month-view .e-content-wrap,
|
|
@@ -2535,6 +2528,10 @@
|
|
|
2535
2528
|
.e-bigger.e-schedule .e-month-view .e-m-day {
|
|
2536
2529
|
font-size: 14px;
|
|
2537
2530
|
}
|
|
2531
|
+
.e-bigger .e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar,
|
|
2532
|
+
.e-bigger.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
|
|
2533
|
+
min-width: 306px;
|
|
2534
|
+
}
|
|
2538
2535
|
|
|
2539
2536
|
.e-schedule.e-multi-drag .e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:focus {
|
|
2540
2537
|
border: 1px solid #fff;
|
package/styles/fabric.css
CHANGED
|
@@ -1630,20 +1630,13 @@
|
|
|
1630
1630
|
}
|
|
1631
1631
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-icon,
|
|
1632
1632
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-edit-icon {
|
|
1633
|
-
line-height:
|
|
1633
|
+
line-height: 22px;
|
|
1634
1634
|
padding: 0 5px;
|
|
1635
1635
|
}
|
|
1636
|
-
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-indicator {
|
|
1637
|
-
display: block;
|
|
1638
|
-
}
|
|
1639
1636
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-left-icon,
|
|
1640
1637
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-right-icon {
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
padding-right: 7px;
|
|
1644
|
-
}
|
|
1645
|
-
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-right-icon {
|
|
1646
|
-
padding-right: 5px;
|
|
1638
|
+
line-height: 22px;
|
|
1639
|
+
padding: 0 2px;
|
|
1647
1640
|
}
|
|
1648
1641
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-appointment-border, .e-schedule .e-timeline-year-view .e-event-table .e-appointment:focus {
|
|
1649
1642
|
border: 0;
|
|
@@ -2511,9 +2504,9 @@
|
|
|
2511
2504
|
height: 35px;
|
|
2512
2505
|
}
|
|
2513
2506
|
.e-bigger .e-schedule .e-month-view .e-resource-cells,
|
|
2514
|
-
.e-bigger .e-schedule .e-month-view .e-date-header-wrap,
|
|
2507
|
+
.e-bigger .e-schedule .e-month-view .e-date-header-wrap table td,
|
|
2515
2508
|
.e-bigger.e-schedule .e-month-view .e-resource-cells,
|
|
2516
|
-
.e-bigger.e-schedule .e-month-view .e-date-header-wrap {
|
|
2509
|
+
.e-bigger.e-schedule .e-month-view .e-date-header-wrap table td {
|
|
2517
2510
|
font-size: 14px;
|
|
2518
2511
|
}
|
|
2519
2512
|
.e-bigger .e-schedule .e-month-view .e-content-wrap,
|
|
@@ -2530,6 +2523,10 @@
|
|
|
2530
2523
|
.e-bigger.e-schedule .e-month-view .e-m-day {
|
|
2531
2524
|
font-size: 14px;
|
|
2532
2525
|
}
|
|
2526
|
+
.e-bigger .e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar,
|
|
2527
|
+
.e-bigger.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
|
|
2528
|
+
min-width: 306px;
|
|
2529
|
+
}
|
|
2533
2530
|
|
|
2534
2531
|
.e-schedule.e-multi-drag .e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:focus {
|
|
2535
2532
|
border: 1px solid rgba(0, 0, 0, 0.5);
|