@syncfusion/ej2-schedule 20.1.61 → 20.2.36
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 +13 -0
- 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 +165 -40
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +170 -40
- 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/helpers/e2e/index.js +9 -7
- package/helpers/e2e/recurrence-editor.js +41 -25
- package/helpers/e2e/schedule.js +44 -28
- package/package.json +15 -15
- package/src/recurrence-editor/recurrence-editor.js +4 -1
- package/src/schedule/actions/crud.js +9 -7
- package/src/schedule/base/interface.d.ts +6 -0
- package/src/schedule/base/schedule.d.ts +8 -0
- package/src/schedule/base/schedule.js +66 -0
- package/src/schedule/event-renderer/agenda-base.js +6 -6
- package/src/schedule/event-renderer/event-base.js +4 -4
- package/src/schedule/event-renderer/month.js +2 -3
- package/src/schedule/event-renderer/vertical-view.js +3 -3
- package/src/schedule/event-renderer/year.js +2 -2
- package/src/schedule/exports/excel-export.js +8 -4
- package/src/schedule/popups/event-window.js +2 -1
- package/src/schedule/popups/quick-popups.js +3 -3
- package/src/schedule/renderer/agenda.js +2 -2
- package/src/schedule/renderer/timeline-month.d.ts +1 -0
- package/src/schedule/renderer/timeline-month.js +9 -0
- package/src/schedule/renderer/timeline-view.d.ts +1 -0
- package/src/schedule/renderer/timeline-view.js +14 -0
- package/src/schedule/renderer/timeline-year.js +3 -0
- package/src/schedule/renderer/vertical-view.d.ts +1 -0
- package/src/schedule/renderer/vertical-view.js +21 -4
- package/src/schedule/renderer/view-base.d.ts +1 -0
- package/src/schedule/renderer/view-base.js +11 -0
- package/src/schedule/renderer/year.js +2 -1
- package/styles/bootstrap-dark.css +5 -1
- package/styles/bootstrap.css +5 -1
- package/styles/bootstrap4.css +5 -1
- package/styles/bootstrap5-dark.css +5 -1
- package/styles/bootstrap5.css +5 -1
- package/styles/fabric-dark.css +5 -1
- package/styles/fabric.css +5 -1
- package/styles/fluent-dark.css +7 -3
- package/styles/fluent.css +7 -3
- package/styles/highcontrast-light.css +5 -1
- package/styles/highcontrast.css +5 -1
- package/styles/material-dark.css +5 -1
- package/styles/material.css +5 -1
- package/styles/recurrence-editor/_fusionnew-definition.scss +15 -0
- package/styles/recurrence-editor/_material3-definition.scss +15 -0
- package/styles/schedule/_fluent-definition.scss +1 -1
- package/styles/schedule/_fusionnew-definition.scss +224 -0
- package/styles/schedule/_layout.scss +6 -1
- package/styles/schedule/_material3-definition.scss +224 -0
- package/styles/schedule/bootstrap-dark.css +5 -1
- package/styles/schedule/bootstrap.css +5 -1
- package/styles/schedule/bootstrap4.css +5 -1
- package/styles/schedule/bootstrap5-dark.css +5 -1
- package/styles/schedule/bootstrap5.css +5 -1
- package/styles/schedule/fabric-dark.css +5 -1
- package/styles/schedule/fabric.css +5 -1
- package/styles/schedule/fluent-dark.css +7 -3
- package/styles/schedule/fluent.css +7 -3
- package/styles/schedule/highcontrast-light.css +5 -1
- package/styles/schedule/highcontrast.css +5 -1
- package/styles/schedule/icons/_fusionnew.scss +232 -0
- package/styles/schedule/icons/_material3.scss +232 -0
- package/styles/schedule/material-dark.css +5 -1
- package/styles/schedule/material.css +5 -1
- package/styles/schedule/tailwind-dark.css +5 -1
- package/styles/schedule/tailwind.css +5 -1
- package/styles/tailwind-dark.css +5 -1
- package/styles/tailwind.css +5 -1
|
@@ -150,6 +150,15 @@ var TimelineMonth = /** @class */ (function (_super) {
|
|
|
150
150
|
this.colLevels = colLevels;
|
|
151
151
|
return colLevels;
|
|
152
152
|
};
|
|
153
|
+
TimelineMonth.prototype.getAdjustedDate = function (startTime) {
|
|
154
|
+
var timeSlots = this.colLevels[this.colLevels.length - 1];
|
|
155
|
+
for (var i = 0; i < timeSlots.length; i++) {
|
|
156
|
+
if (timeSlots[i].date.getTime() > startTime.getTime()) {
|
|
157
|
+
return timeSlots[i - 1].date;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
return null;
|
|
161
|
+
};
|
|
153
162
|
TimelineMonth.prototype.destroy = function () {
|
|
154
163
|
if (!this.parent || this.parent && this.parent.isDestroyed) {
|
|
155
164
|
return;
|
|
@@ -246,6 +246,20 @@ var TimelineViews = /** @class */ (function (_super) {
|
|
|
246
246
|
this.timelineAppointment.renderAppointments();
|
|
247
247
|
this.parent.notify(event.eventsLoaded, {});
|
|
248
248
|
};
|
|
249
|
+
TimelineViews.prototype.getAdjustedDate = function (date) {
|
|
250
|
+
if (!this.parent.activeViewOptions.timeScale.enable) {
|
|
251
|
+
return new Date(date.setHours(0, 0, 0, 0));
|
|
252
|
+
}
|
|
253
|
+
else {
|
|
254
|
+
var timeSlots = this.colLevels[this.colLevels.length - 1];
|
|
255
|
+
for (var i = 0; i < timeSlots.length; i++) {
|
|
256
|
+
if (timeSlots[i].date.getTime() > date.getTime()) {
|
|
257
|
+
return timeSlots[i - 1].date;
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
return null;
|
|
262
|
+
};
|
|
249
263
|
TimelineViews.prototype.destroy = function () {
|
|
250
264
|
if (!this.parent || this.parent && this.parent.isDestroyed) {
|
|
251
265
|
return;
|
|
@@ -271,6 +271,9 @@ var TimelineYear = /** @class */ (function (_super) {
|
|
|
271
271
|
else {
|
|
272
272
|
addClass([td], cls.OTHERMONTH_CLASS);
|
|
273
273
|
}
|
|
274
|
+
if (td.classList.contains(cls.OTHERMONTH_CLASS)) {
|
|
275
|
+
continue;
|
|
276
|
+
}
|
|
274
277
|
td.appendChild(dateHeader);
|
|
275
278
|
if (isDateAvail) {
|
|
276
279
|
td.setAttribute('data-date', date.getTime().toString());
|
|
@@ -57,5 +57,6 @@ export declare class VerticalView extends ViewBase implements IRenderer {
|
|
|
57
57
|
getLeftPanelElement(): HTMLElement;
|
|
58
58
|
getEndDateFromStartDate(start: Date): Date;
|
|
59
59
|
getTimeSlotRows(handler?: CallbackFunction): TimeSlotData[];
|
|
60
|
+
getAdjustedDate(startTime: Date): Date;
|
|
60
61
|
destroy(): void;
|
|
61
62
|
}
|
|
@@ -514,12 +514,11 @@ var VerticalView = /** @class */ (function (_super) {
|
|
|
514
514
|
var wrap = createElement('div', { className: cls.DATE_HEADER_WRAP_CLASS });
|
|
515
515
|
container.appendChild(wrap);
|
|
516
516
|
var tbl = this.createTableLayout();
|
|
517
|
-
var trEle = createElement('tr');
|
|
517
|
+
var trEle = createElement('tr', { className: cls.HEADER_ROW_CLASS });
|
|
518
518
|
var rowCount = this.colLevels.length;
|
|
519
519
|
var lastLevel = this.colLevels[rowCount - 1];
|
|
520
520
|
for (var i = 0; i < rowCount; i++) {
|
|
521
521
|
var ntr = trEle.cloneNode();
|
|
522
|
-
addClass([ntr], cls.HEADER_ROW_CLASS);
|
|
523
522
|
var level = this.colLevels[i];
|
|
524
523
|
for (var j = 0; j < level.length; j++) {
|
|
525
524
|
ntr.appendChild(this.createTd(level[j]));
|
|
@@ -532,13 +531,13 @@ var VerticalView = /** @class */ (function (_super) {
|
|
|
532
531
|
return container;
|
|
533
532
|
};
|
|
534
533
|
VerticalView.prototype.createAllDayRow = function (table, tdData) {
|
|
535
|
-
var ntr = createElement('tr');
|
|
536
|
-
addClass([ntr], cls.ALLDAY_ROW_CLASS);
|
|
534
|
+
var ntr = createElement('tr', { className: cls.ALLDAY_ROW_CLASS });
|
|
537
535
|
for (var j = 0; j < tdData.length; j++) {
|
|
538
536
|
var td = extend({}, tdData[j]);
|
|
539
537
|
td.className = [cls.ALLDAY_CELLS_CLASS];
|
|
540
538
|
td.type = 'alldayCells';
|
|
541
539
|
var ntd = this.createTd(td);
|
|
540
|
+
ntd.setAttribute('role', 'gridcell');
|
|
542
541
|
ntd.setAttribute('data-date', td.date.getTime().toString());
|
|
543
542
|
if (!isNullOrUndefined(td.groupIndex)) {
|
|
544
543
|
ntd.setAttribute('data-group-index', '' + td.groupIndex);
|
|
@@ -571,6 +570,7 @@ var VerticalView = /** @class */ (function (_super) {
|
|
|
571
570
|
}
|
|
572
571
|
if (td.type === 'dateHeader' && td.className.indexOf(cls.HEADER_CELLS_CLASS) >= 0) {
|
|
573
572
|
tdEle.setAttribute('data-date', td.date.getTime().toString());
|
|
573
|
+
tdEle.setAttribute('role', 'gridcell');
|
|
574
574
|
if (!isNullOrUndefined(td.groupIndex)) {
|
|
575
575
|
tdEle.setAttribute('data-group-index', '' + td.groupIndex);
|
|
576
576
|
}
|
|
@@ -773,6 +773,23 @@ var VerticalView = /** @class */ (function (_super) {
|
|
|
773
773
|
}
|
|
774
774
|
return rows;
|
|
775
775
|
};
|
|
776
|
+
VerticalView.prototype.getAdjustedDate = function (startTime) {
|
|
777
|
+
if (!this.parent.activeViewOptions.timeScale.enable) {
|
|
778
|
+
return new Date(startTime.setHours(0, 0, 0, 0));
|
|
779
|
+
}
|
|
780
|
+
else {
|
|
781
|
+
var timeSlots = this.getTimeSlotRows();
|
|
782
|
+
var startDate = new Date(new Date(timeSlots[0].date.getTime()).
|
|
783
|
+
setHours(startTime.getHours(), startTime.getMinutes(), startTime.getMilliseconds()));
|
|
784
|
+
for (var i = 0; i < timeSlots.length; i++) {
|
|
785
|
+
if (timeSlots[i].date.getTime() > startDate.getTime()) {
|
|
786
|
+
startTime.setHours(timeSlots[i - 1].date.getHours(), timeSlots[i - 1].date.getMinutes(), timeSlots[i - 1].date.getMilliseconds());
|
|
787
|
+
return new Date(startTime);
|
|
788
|
+
}
|
|
789
|
+
}
|
|
790
|
+
}
|
|
791
|
+
return null;
|
|
792
|
+
};
|
|
776
793
|
VerticalView.prototype.destroy = function () {
|
|
777
794
|
if (!this.parent || this.parent && this.parent.isDestroyed) {
|
|
778
795
|
return;
|
|
@@ -533,6 +533,17 @@ var ViewBase = /** @class */ (function () {
|
|
|
533
533
|
}
|
|
534
534
|
return endDate;
|
|
535
535
|
};
|
|
536
|
+
ViewBase.prototype.getAdjustedDate = function (startTime) {
|
|
537
|
+
if (!this.parent.activeViewOptions.timeScale.enable || this.parent.currentView === 'Month' ||
|
|
538
|
+
(this.parent.currentView === 'TimelineYear' && this.parent.activeViewOptions.group.resources.length === 0)) {
|
|
539
|
+
return new Date(startTime.setHours(0, 0, 0, 0));
|
|
540
|
+
}
|
|
541
|
+
else if (this.parent.currentView === 'TimelineYear' && this.parent.activeViewOptions.group.resources.length > 0) {
|
|
542
|
+
startTime.setHours(0, 0, 0, 0);
|
|
543
|
+
return new Date(startTime.setDate(1));
|
|
544
|
+
}
|
|
545
|
+
return null;
|
|
546
|
+
};
|
|
536
547
|
ViewBase.prototype.destroy = function () {
|
|
537
548
|
if (this.element && this.element.parentNode) {
|
|
538
549
|
remove(this.element);
|
|
@@ -331,7 +331,8 @@ var Year = /** @class */ (function (_super) {
|
|
|
331
331
|
return this.parent.currentView === 'Year' ? util.getWeekFirstDate(this.getStartDate(), this.parent.firstDayOfWeek) : this.getStartDate();
|
|
332
332
|
};
|
|
333
333
|
Year.prototype.endDate = function () {
|
|
334
|
-
return this.parent.currentView === 'Year' ? util.addDays(util.getWeekLastDate(this.getEndDate(), this.parent.firstDayOfWeek), 1) :
|
|
334
|
+
return this.parent.currentView === 'Year' ? util.addDays(util.getWeekLastDate(this.getEndDate(), this.parent.firstDayOfWeek), 1) :
|
|
335
|
+
util.addDays(this.getEndDate(), 1);
|
|
335
336
|
};
|
|
336
337
|
Year.prototype.getEndDateFromStartDate = function (start) {
|
|
337
338
|
var date = new Date(start.getTime());
|
|
@@ -1500,6 +1500,10 @@
|
|
|
1500
1500
|
position: absolute;
|
|
1501
1501
|
top: 0;
|
|
1502
1502
|
}
|
|
1503
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-container.e-event-container {
|
|
1504
|
+
height: 75px;
|
|
1505
|
+
position: relative;
|
|
1506
|
+
}
|
|
1503
1507
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-wrapper {
|
|
1504
1508
|
position: absolute;
|
|
1505
1509
|
}
|
|
@@ -2465,7 +2469,7 @@
|
|
|
2465
2469
|
}
|
|
2466
2470
|
|
|
2467
2471
|
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2468
|
-
width:
|
|
2472
|
+
width: 502px;
|
|
2469
2473
|
}
|
|
2470
2474
|
|
|
2471
2475
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
package/styles/bootstrap.css
CHANGED
|
@@ -1498,6 +1498,10 @@
|
|
|
1498
1498
|
position: absolute;
|
|
1499
1499
|
top: 0;
|
|
1500
1500
|
}
|
|
1501
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-container.e-event-container {
|
|
1502
|
+
height: 75px;
|
|
1503
|
+
position: relative;
|
|
1504
|
+
}
|
|
1501
1505
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-wrapper {
|
|
1502
1506
|
position: absolute;
|
|
1503
1507
|
}
|
|
@@ -2463,7 +2467,7 @@
|
|
|
2463
2467
|
}
|
|
2464
2468
|
|
|
2465
2469
|
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2466
|
-
width:
|
|
2470
|
+
width: 502px;
|
|
2467
2471
|
}
|
|
2468
2472
|
|
|
2469
2473
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
package/styles/bootstrap4.css
CHANGED
|
@@ -1503,6 +1503,10 @@
|
|
|
1503
1503
|
position: absolute;
|
|
1504
1504
|
top: 0;
|
|
1505
1505
|
}
|
|
1506
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-container.e-event-container {
|
|
1507
|
+
height: 75px;
|
|
1508
|
+
position: relative;
|
|
1509
|
+
}
|
|
1506
1510
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-wrapper {
|
|
1507
1511
|
position: absolute;
|
|
1508
1512
|
}
|
|
@@ -2482,7 +2486,7 @@
|
|
|
2482
2486
|
}
|
|
2483
2487
|
|
|
2484
2488
|
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2485
|
-
width:
|
|
2489
|
+
width: 502px;
|
|
2486
2490
|
}
|
|
2487
2491
|
|
|
2488
2492
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
@@ -1508,6 +1508,10 @@
|
|
|
1508
1508
|
position: absolute;
|
|
1509
1509
|
top: 0;
|
|
1510
1510
|
}
|
|
1511
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-container.e-event-container {
|
|
1512
|
+
height: 75px;
|
|
1513
|
+
position: relative;
|
|
1514
|
+
}
|
|
1511
1515
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-wrapper {
|
|
1512
1516
|
position: absolute;
|
|
1513
1517
|
}
|
|
@@ -2491,7 +2495,7 @@
|
|
|
2491
2495
|
}
|
|
2492
2496
|
|
|
2493
2497
|
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2494
|
-
width:
|
|
2498
|
+
width: 502px;
|
|
2495
2499
|
}
|
|
2496
2500
|
|
|
2497
2501
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
package/styles/bootstrap5.css
CHANGED
|
@@ -1508,6 +1508,10 @@
|
|
|
1508
1508
|
position: absolute;
|
|
1509
1509
|
top: 0;
|
|
1510
1510
|
}
|
|
1511
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-container.e-event-container {
|
|
1512
|
+
height: 75px;
|
|
1513
|
+
position: relative;
|
|
1514
|
+
}
|
|
1511
1515
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-wrapper {
|
|
1512
1516
|
position: absolute;
|
|
1513
1517
|
}
|
|
@@ -2491,7 +2495,7 @@
|
|
|
2491
2495
|
}
|
|
2492
2496
|
|
|
2493
2497
|
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2494
|
-
width:
|
|
2498
|
+
width: 502px;
|
|
2495
2499
|
}
|
|
2496
2500
|
|
|
2497
2501
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
package/styles/fabric-dark.css
CHANGED
|
@@ -1500,6 +1500,10 @@
|
|
|
1500
1500
|
position: absolute;
|
|
1501
1501
|
top: 0;
|
|
1502
1502
|
}
|
|
1503
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-container.e-event-container {
|
|
1504
|
+
height: 75px;
|
|
1505
|
+
position: relative;
|
|
1506
|
+
}
|
|
1503
1507
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-wrapper {
|
|
1504
1508
|
position: absolute;
|
|
1505
1509
|
}
|
|
@@ -2466,7 +2470,7 @@
|
|
|
2466
2470
|
}
|
|
2467
2471
|
|
|
2468
2472
|
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2469
|
-
width:
|
|
2473
|
+
width: 502px;
|
|
2470
2474
|
}
|
|
2471
2475
|
|
|
2472
2476
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
package/styles/fabric.css
CHANGED
|
@@ -1500,6 +1500,10 @@
|
|
|
1500
1500
|
position: absolute;
|
|
1501
1501
|
top: 0;
|
|
1502
1502
|
}
|
|
1503
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-container.e-event-container {
|
|
1504
|
+
height: 75px;
|
|
1505
|
+
position: relative;
|
|
1506
|
+
}
|
|
1503
1507
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-wrapper {
|
|
1504
1508
|
position: absolute;
|
|
1505
1509
|
}
|
|
@@ -2466,7 +2470,7 @@
|
|
|
2466
2470
|
}
|
|
2467
2471
|
|
|
2468
2472
|
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2469
|
-
width:
|
|
2473
|
+
width: 502px;
|
|
2470
2474
|
}
|
|
2471
2475
|
|
|
2472
2476
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
package/styles/fluent-dark.css
CHANGED
|
@@ -167,7 +167,7 @@
|
|
|
167
167
|
.e-schedule .e-schedule-toolbar {
|
|
168
168
|
background: #1b1a19;
|
|
169
169
|
border: 0;
|
|
170
|
-
border-bottom:
|
|
170
|
+
border-bottom: 1px solid #292827;
|
|
171
171
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
|
172
172
|
margin-bottom: 3px;
|
|
173
173
|
min-height: 38px;
|
|
@@ -270,7 +270,7 @@
|
|
|
270
270
|
}
|
|
271
271
|
.e-schedule .e-schedule-resource-toolbar {
|
|
272
272
|
background: #1b1a19;
|
|
273
|
-
border-bottom:
|
|
273
|
+
border-bottom: 1px solid #292827;
|
|
274
274
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
|
275
275
|
display: -ms-flexbox;
|
|
276
276
|
display: flex;
|
|
@@ -1494,6 +1494,10 @@
|
|
|
1494
1494
|
position: absolute;
|
|
1495
1495
|
top: 0;
|
|
1496
1496
|
}
|
|
1497
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-container.e-event-container {
|
|
1498
|
+
height: 75px;
|
|
1499
|
+
position: relative;
|
|
1500
|
+
}
|
|
1497
1501
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-wrapper {
|
|
1498
1502
|
position: absolute;
|
|
1499
1503
|
}
|
|
@@ -2460,7 +2464,7 @@
|
|
|
2460
2464
|
}
|
|
2461
2465
|
|
|
2462
2466
|
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2463
|
-
width:
|
|
2467
|
+
width: 502px;
|
|
2464
2468
|
}
|
|
2465
2469
|
|
|
2466
2470
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
package/styles/fluent.css
CHANGED
|
@@ -167,7 +167,7 @@
|
|
|
167
167
|
.e-schedule .e-schedule-toolbar {
|
|
168
168
|
background: #fff;
|
|
169
169
|
border: 0;
|
|
170
|
-
border-bottom:
|
|
170
|
+
border-bottom: 1px solid #edebe9;
|
|
171
171
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
|
172
172
|
margin-bottom: 3px;
|
|
173
173
|
min-height: 38px;
|
|
@@ -270,7 +270,7 @@
|
|
|
270
270
|
}
|
|
271
271
|
.e-schedule .e-schedule-resource-toolbar {
|
|
272
272
|
background: #fff;
|
|
273
|
-
border-bottom:
|
|
273
|
+
border-bottom: 1px solid #edebe9;
|
|
274
274
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
|
275
275
|
display: -ms-flexbox;
|
|
276
276
|
display: flex;
|
|
@@ -1494,6 +1494,10 @@
|
|
|
1494
1494
|
position: absolute;
|
|
1495
1495
|
top: 0;
|
|
1496
1496
|
}
|
|
1497
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-container.e-event-container {
|
|
1498
|
+
height: 75px;
|
|
1499
|
+
position: relative;
|
|
1500
|
+
}
|
|
1497
1501
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-wrapper {
|
|
1498
1502
|
position: absolute;
|
|
1499
1503
|
}
|
|
@@ -2460,7 +2464,7 @@
|
|
|
2460
2464
|
}
|
|
2461
2465
|
|
|
2462
2466
|
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2463
|
-
width:
|
|
2467
|
+
width: 502px;
|
|
2464
2468
|
}
|
|
2465
2469
|
|
|
2466
2470
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
@@ -1497,6 +1497,10 @@
|
|
|
1497
1497
|
position: absolute;
|
|
1498
1498
|
top: 0;
|
|
1499
1499
|
}
|
|
1500
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-container.e-event-container {
|
|
1501
|
+
height: 75px;
|
|
1502
|
+
position: relative;
|
|
1503
|
+
}
|
|
1500
1504
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-wrapper {
|
|
1501
1505
|
position: absolute;
|
|
1502
1506
|
}
|
|
@@ -2463,7 +2467,7 @@
|
|
|
2463
2467
|
}
|
|
2464
2468
|
|
|
2465
2469
|
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2466
|
-
width:
|
|
2470
|
+
width: 502px;
|
|
2467
2471
|
}
|
|
2468
2472
|
|
|
2469
2473
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
package/styles/highcontrast.css
CHANGED
|
@@ -1503,6 +1503,10 @@
|
|
|
1503
1503
|
position: absolute;
|
|
1504
1504
|
top: 0;
|
|
1505
1505
|
}
|
|
1506
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-container.e-event-container {
|
|
1507
|
+
height: 75px;
|
|
1508
|
+
position: relative;
|
|
1509
|
+
}
|
|
1506
1510
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-wrapper {
|
|
1507
1511
|
position: absolute;
|
|
1508
1512
|
}
|
|
@@ -2469,7 +2473,7 @@
|
|
|
2469
2473
|
}
|
|
2470
2474
|
|
|
2471
2475
|
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2472
|
-
width:
|
|
2476
|
+
width: 502px;
|
|
2473
2477
|
}
|
|
2474
2478
|
|
|
2475
2479
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
package/styles/material-dark.css
CHANGED
|
@@ -1498,6 +1498,10 @@
|
|
|
1498
1498
|
position: absolute;
|
|
1499
1499
|
top: 0;
|
|
1500
1500
|
}
|
|
1501
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-container.e-event-container {
|
|
1502
|
+
height: 75px;
|
|
1503
|
+
position: relative;
|
|
1504
|
+
}
|
|
1501
1505
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-wrapper {
|
|
1502
1506
|
position: absolute;
|
|
1503
1507
|
}
|
|
@@ -2464,7 +2468,7 @@
|
|
|
2464
2468
|
}
|
|
2465
2469
|
|
|
2466
2470
|
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2467
|
-
width:
|
|
2471
|
+
width: 502px;
|
|
2468
2472
|
}
|
|
2469
2473
|
|
|
2470
2474
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
package/styles/material.css
CHANGED
|
@@ -1501,6 +1501,10 @@
|
|
|
1501
1501
|
position: absolute;
|
|
1502
1502
|
top: 0;
|
|
1503
1503
|
}
|
|
1504
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-container.e-event-container {
|
|
1505
|
+
height: 75px;
|
|
1506
|
+
position: relative;
|
|
1507
|
+
}
|
|
1504
1508
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-wrapper {
|
|
1505
1509
|
position: absolute;
|
|
1506
1510
|
}
|
|
@@ -2467,7 +2471,7 @@
|
|
|
2467
2471
|
}
|
|
2468
2472
|
|
|
2469
2473
|
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2470
|
-
width:
|
|
2474
|
+
width: 502px;
|
|
2471
2475
|
}
|
|
2472
2476
|
|
|
2473
2477
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/*! recurrence editor theme wise definitions*/
|
|
2
|
+
$recurrence-label-bottom: 7px !default;
|
|
3
|
+
$recurrence-month-label-bottom: 7px !default;
|
|
4
|
+
$recurrence-week-label-bottom: 10px !default;
|
|
5
|
+
$recurrence-label-font-weight: 400 !default;
|
|
6
|
+
$recurrence-label-font-nrml-size: 14px !default;
|
|
7
|
+
$recurrence-label-font-bgr-size: 16px !default;
|
|
8
|
+
$recurrence-left-padding: 0 8px 16px 0 !default;
|
|
9
|
+
$recurrence-week-position-bgr-min-width: 162px !default;
|
|
10
|
+
$recurrence-day-position-bgr-min-width: 190px !default;
|
|
11
|
+
$recurrence-day-position-bgr-padding-left: 54px !default;
|
|
12
|
+
$recurrence-end-bgr-padding-right: 16px !default;
|
|
13
|
+
$recurrence-week-position-min-width: 98px !default;
|
|
14
|
+
$recurrence-week-position-right: 27px !default;
|
|
15
|
+
$recurrence-week-position-right-rtl: -27px !default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/*! recurrence editor theme wise definitions*/
|
|
2
|
+
$recurrence-label-bottom: 7px !default;
|
|
3
|
+
$recurrence-month-label-bottom: 7px !default;
|
|
4
|
+
$recurrence-week-label-bottom: 10px !default;
|
|
5
|
+
$recurrence-label-font-weight: 400 !default;
|
|
6
|
+
$recurrence-label-font-nrml-size: 14px !default;
|
|
7
|
+
$recurrence-label-font-bgr-size: 16px !default;
|
|
8
|
+
$recurrence-left-padding: 0 8px 16px 0 !default;
|
|
9
|
+
$recurrence-week-position-bgr-min-width: 162px !default;
|
|
10
|
+
$recurrence-day-position-bgr-min-width: 190px !default;
|
|
11
|
+
$recurrence-day-position-bgr-padding-left: 54px !default;
|
|
12
|
+
$recurrence-end-bgr-padding-right: 16px !default;
|
|
13
|
+
$recurrence-week-position-min-width: 98px !default;
|
|
14
|
+
$recurrence-week-position-right: 27px !default;
|
|
15
|
+
$recurrence-week-position-right-rtl: -27px !default;
|
|
@@ -105,7 +105,7 @@ $schedule-recurrence-font-size: 11px !default;
|
|
|
105
105
|
|
|
106
106
|
$schedule-tbar-bgr-color: $secondary-bg-color-focus !default;
|
|
107
107
|
$schedule-tbar-bgr-min-height: 54px !default;
|
|
108
|
-
$schedule-tbar-border-bottom-size:
|
|
108
|
+
$schedule-tbar-border-bottom-size: 1px solid $border-light !default;
|
|
109
109
|
$schedule-tbar-box-shadow: 0 1px 2px rgba($black, .15) !default;
|
|
110
110
|
$schedule-tbar-box-shadow-bottom-margin: 3px !default;
|
|
111
111
|
$schedule-tbar-min-height: 38px !default;
|