@syncfusion/ej2-schedule 28.2.11 → 29.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/.gitleaksignore +4 -0
- package/README.md +2 -2
- 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 +518 -146
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +570 -186
- 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 +24 -26
- package/src/recurrence-editor/recurrence-editor-model.d.ts +14 -0
- package/src/recurrence-editor/recurrence-editor.d.ts +12 -0
- package/src/recurrence-editor/recurrence-editor.js +8 -1
- package/src/schedule/actions/action-base.js +4 -1
- package/src/schedule/actions/crud.d.ts +3 -0
- package/src/schedule/actions/crud.js +129 -63
- package/src/schedule/actions/drag.js +3 -0
- package/src/schedule/actions/resize.js +4 -1
- package/src/schedule/actions/virtual-scroll.js +3 -1
- package/src/schedule/base/constant.d.ts +6 -0
- package/src/schedule/base/constant.js +6 -0
- package/src/schedule/base/interface.d.ts +53 -0
- package/src/schedule/base/schedule-model.d.ts +54 -1
- package/src/schedule/base/schedule.d.ts +68 -2
- package/src/schedule/base/schedule.js +67 -0
- package/src/schedule/base/type.d.ts +2 -1
- package/src/schedule/event-renderer/event-base.d.ts +5 -0
- package/src/schedule/event-renderer/event-base.js +123 -27
- package/src/schedule/event-renderer/inline-edit.d.ts +3 -1
- package/src/schedule/event-renderer/inline-edit.js +18 -6
- package/src/schedule/event-renderer/month.d.ts +1 -0
- package/src/schedule/event-renderer/month.js +25 -0
- package/src/schedule/event-renderer/timeline-view.d.ts +1 -1
- package/src/schedule/event-renderer/timeline-view.js +12 -19
- package/src/schedule/event-renderer/vertical-view.js +2 -2
- package/src/schedule/event-renderer/year.js +1 -1
- package/src/schedule/exports/excel-export.js +9 -2
- package/src/schedule/exports/print.d.ts +2 -0
- package/src/schedule/exports/print.js +90 -52
- package/src/schedule/models/views-model.d.ts +32 -0
- package/src/schedule/models/views.d.ts +30 -0
- package/src/schedule/models/views.js +6 -0
- package/src/schedule/popups/event-tooltip.js +18 -0
- package/src/schedule/popups/event-window.d.ts +1 -0
- package/src/schedule/popups/event-window.js +35 -4
- package/src/schedule/popups/quick-popups.js +11 -4
- package/src/schedule/renderer/month.js +3 -1
- package/styles/bds-lite.css +35 -6
- package/styles/bds.css +37 -21
- package/styles/bootstrap-dark-lite.css +46 -17
- package/styles/bootstrap-dark.css +49 -33
- package/styles/bootstrap-lite.css +42 -13
- package/styles/bootstrap.css +44 -28
- package/styles/bootstrap4-lite.css +55 -26
- package/styles/bootstrap4.css +57 -41
- package/styles/bootstrap5-dark-lite.css +128 -99
- package/styles/bootstrap5-dark.css +131 -115
- package/styles/bootstrap5-lite.css +50 -21
- package/styles/bootstrap5.3-lite.css +35 -6
- package/styles/bootstrap5.3.css +37 -21
- package/styles/bootstrap5.css +52 -36
- package/styles/fabric-dark-lite.css +46 -17
- package/styles/fabric-dark.css +49 -33
- package/styles/fabric-lite.css +56 -27
- package/styles/fabric.css +58 -42
- package/styles/fluent-dark-lite.css +39 -10
- package/styles/fluent-dark.css +40 -24
- package/styles/fluent-lite.css +39 -10
- package/styles/fluent.css +40 -24
- package/styles/fluent2-lite.css +35 -6
- package/styles/fluent2.css +38 -22
- package/styles/highcontrast-light-lite.css +53 -24
- package/styles/highcontrast-light.css +56 -40
- package/styles/highcontrast-lite.css +53 -24
- package/styles/highcontrast.css +56 -40
- package/styles/material-dark-lite.css +34 -5
- package/styles/material-dark.css +35 -19
- package/styles/material-lite.css +34 -5
- package/styles/material.css +35 -19
- package/styles/material3-dark-lite.css +36 -7
- package/styles/material3-dark.css +39 -23
- package/styles/material3-lite.css +36 -7
- package/styles/material3.css +39 -23
- package/styles/recurrence-editor/_layout.scss +6 -1
- package/styles/recurrence-editor/bds.css +5 -1
- package/styles/recurrence-editor/bootstrap-dark.css +5 -1
- package/styles/recurrence-editor/bootstrap.css +5 -1
- package/styles/recurrence-editor/bootstrap4.css +5 -1
- package/styles/recurrence-editor/bootstrap5-dark.css +5 -1
- package/styles/recurrence-editor/bootstrap5.3.css +5 -1
- package/styles/recurrence-editor/bootstrap5.css +5 -1
- package/styles/recurrence-editor/fabric-dark.css +5 -1
- package/styles/recurrence-editor/fabric.css +5 -1
- package/styles/recurrence-editor/fluent-dark.css +5 -1
- package/styles/recurrence-editor/fluent.css +5 -1
- package/styles/recurrence-editor/fluent2.css +5 -1
- package/styles/recurrence-editor/highcontrast-light.css +5 -1
- package/styles/recurrence-editor/highcontrast.css +5 -1
- package/styles/recurrence-editor/material-dark.css +5 -1
- package/styles/recurrence-editor/material.css +5 -1
- package/styles/recurrence-editor/material3-dark.css +5 -1
- package/styles/recurrence-editor/material3.css +5 -1
- package/styles/recurrence-editor/tailwind-dark.css +5 -1
- package/styles/recurrence-editor/tailwind.css +5 -1
- package/styles/recurrence-editor/tailwind3.css +5 -1
- package/styles/schedule/_bds-definition.scss +2 -0
- package/styles/schedule/_bigger.scss +2 -17
- package/styles/schedule/_bootstrap-dark-definition.scss +5 -1
- package/styles/schedule/_bootstrap-definition.scss +5 -1
- package/styles/schedule/_bootstrap4-definition.scss +9 -5
- package/styles/schedule/_bootstrap5-definition.scss +5 -1
- package/styles/schedule/_bootstrap5.3-definition.scss +2 -0
- package/styles/schedule/_fabric-dark-definition.scss +2 -0
- package/styles/schedule/_fabric-definition.scss +5 -1
- package/styles/schedule/_fluent-definition.scss +3 -1
- package/styles/schedule/_fluent2-definition.scss +3 -1
- package/styles/schedule/_fusionnew-definition.scss +2 -0
- package/styles/schedule/_highcontrast-definition.scss +6 -2
- package/styles/schedule/_highcontrast-light-definition.scss +6 -2
- package/styles/schedule/_layout.scss +39 -9
- package/styles/schedule/_material-dark-definition.scss +2 -0
- package/styles/schedule/_material-definition.scss +2 -0
- package/styles/schedule/_material3-definition.scss +4 -2
- package/styles/schedule/_tailwind-definition.scss +2 -0
- package/styles/schedule/_tailwind3-definition.scss +4 -2
- package/styles/schedule/bds.css +32 -20
- package/styles/schedule/bootstrap-dark.css +44 -32
- package/styles/schedule/bootstrap.css +39 -27
- package/styles/schedule/bootstrap4.css +52 -40
- package/styles/schedule/bootstrap5-dark.css +126 -114
- package/styles/schedule/bootstrap5.3.css +32 -20
- package/styles/schedule/bootstrap5.css +47 -35
- package/styles/schedule/fabric-dark.css +44 -32
- package/styles/schedule/fabric.css +53 -41
- package/styles/schedule/fluent-dark.css +35 -23
- package/styles/schedule/fluent.css +35 -23
- package/styles/schedule/fluent2.css +33 -21
- package/styles/schedule/highcontrast-light.css +51 -39
- package/styles/schedule/highcontrast.css +51 -39
- package/styles/schedule/material-dark.css +30 -18
- package/styles/schedule/material.css +30 -18
- package/styles/schedule/material3-dark.css +34 -22
- package/styles/schedule/material3.css +34 -22
- package/styles/schedule/tailwind-dark.css +49 -37
- package/styles/schedule/tailwind.css +32 -20
- package/styles/schedule/tailwind3.css +34 -22
- package/styles/tailwind-dark-lite.css +52 -23
- package/styles/tailwind-dark.css +54 -38
- package/styles/tailwind-lite.css +35 -6
- package/styles/tailwind.css +37 -21
- package/styles/tailwind3-lite.css +36 -7
- package/styles/tailwind3.css +39 -23
|
@@ -201,6 +201,10 @@
|
|
|
201
201
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
202
202
|
display: none;
|
|
203
203
|
}
|
|
204
|
+
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
205
|
+
min-width: 30px;
|
|
206
|
+
margin-bottom: 18px;
|
|
207
|
+
}
|
|
204
208
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
205
209
|
float: left;
|
|
206
210
|
padding: 16px 20px 0;
|
|
@@ -372,7 +376,7 @@
|
|
|
372
376
|
width: 65%;
|
|
373
377
|
}
|
|
374
378
|
.e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
|
|
375
|
-
padding-left:
|
|
379
|
+
padding-left: 59px;
|
|
376
380
|
}
|
|
377
381
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
378
382
|
padding-right: 0;
|
|
@@ -201,6 +201,10 @@
|
|
|
201
201
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
202
202
|
display: none;
|
|
203
203
|
}
|
|
204
|
+
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
205
|
+
min-width: 30px;
|
|
206
|
+
margin-bottom: 18px;
|
|
207
|
+
}
|
|
204
208
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
205
209
|
float: left;
|
|
206
210
|
padding: 16px 20px 0;
|
|
@@ -372,7 +376,7 @@
|
|
|
372
376
|
width: 65%;
|
|
373
377
|
}
|
|
374
378
|
.e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
|
|
375
|
-
padding-left:
|
|
379
|
+
padding-left: 59px;
|
|
376
380
|
}
|
|
377
381
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
378
382
|
padding-right: 0;
|
|
@@ -231,6 +231,10 @@
|
|
|
231
231
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
232
232
|
display: none;
|
|
233
233
|
}
|
|
234
|
+
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
235
|
+
min-width: 30px;
|
|
236
|
+
margin-bottom: 18px;
|
|
237
|
+
}
|
|
234
238
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
235
239
|
float: left;
|
|
236
240
|
padding: 16px 20px 0;
|
|
@@ -402,7 +406,7 @@
|
|
|
402
406
|
width: 65%;
|
|
403
407
|
}
|
|
404
408
|
.e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
|
|
405
|
-
padding-left:
|
|
409
|
+
padding-left: 59px;
|
|
406
410
|
}
|
|
407
411
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
408
412
|
padding-right: 0;
|
|
@@ -262,6 +262,8 @@ $schedule-header-icon-wrapper-bg-color: $schedule-content-bg-color !default;
|
|
|
262
262
|
$schedule-bgr-date-time-icon-padding-right: 16px !default;
|
|
263
263
|
$schedule-bgr-more-event-close-icon-padding: 1px !default;
|
|
264
264
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
265
|
+
$schedule-calendar-width: 300px !default;
|
|
266
|
+
$schedule-bgr-calendar-width: 345px !default;
|
|
265
267
|
|
|
266
268
|
@mixin tbar-btn-animation {
|
|
267
269
|
content: '';
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
}
|
|
162
162
|
|
|
163
163
|
.e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
|
|
164
|
-
min-width:
|
|
164
|
+
min-width: $schedule-bgr-calendar-width;
|
|
165
165
|
}
|
|
166
166
|
}
|
|
167
167
|
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
}
|
|
177
177
|
|
|
178
178
|
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
179
|
-
width:
|
|
179
|
+
width: 520px;
|
|
180
180
|
}
|
|
181
181
|
|
|
182
182
|
.e-bigger .e-dialog.e-quick-dialog {
|
|
@@ -208,17 +208,6 @@
|
|
|
208
208
|
position: relative;
|
|
209
209
|
}
|
|
210
210
|
|
|
211
|
-
.e-event-cancel,
|
|
212
|
-
.e-event-delete {
|
|
213
|
-
border: $schedule-popup-btn-border;
|
|
214
|
-
box-shadow: none;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
.e-footer-content .e-btn.e-event-delete {
|
|
218
|
-
float: left;
|
|
219
|
-
margin-left: 0;
|
|
220
|
-
}
|
|
221
|
-
|
|
222
211
|
.e-subject-container,
|
|
223
212
|
.e-start-container,
|
|
224
213
|
.e-start-time-zone-container,
|
|
@@ -324,10 +313,6 @@
|
|
|
324
313
|
padding-left: 0;
|
|
325
314
|
padding-right: 12px;
|
|
326
315
|
}
|
|
327
|
-
|
|
328
|
-
.e-event-delete {
|
|
329
|
-
float: right;
|
|
330
|
-
}
|
|
331
316
|
}
|
|
332
317
|
}
|
|
333
318
|
}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@use 'sass:color';
|
|
2
|
+
|
|
1
3
|
$schedule-skin: $skin-name !default;
|
|
2
4
|
$schedule-header-bg-color: $grey-base !default;
|
|
3
5
|
$schedule-header-border-color: $grey-99 !default;
|
|
@@ -19,7 +21,7 @@ $schedule-resource-focus-bg-color: $schedule-hover-bg-color !default;
|
|
|
19
21
|
$schedule-hover-font-color: $header-font-color !default;
|
|
20
22
|
$schedule-active-color: $brand-primary-font !default;
|
|
21
23
|
$schedule-active-border-color: $brand-primary !default;
|
|
22
|
-
$schedule-active-font-color:
|
|
24
|
+
$schedule-active-font-color: color.adjust($brand-primary, $lightness: 15%) !default;
|
|
23
25
|
$schedule-current-day-active-color: $schedule-active-color !default;
|
|
24
26
|
$schedule-calendar-background: none !default;
|
|
25
27
|
$schedule-calendar-shadow: none !default;
|
|
@@ -259,6 +261,8 @@ $schedule-header-icon-wrapper-bg-color: $schedule-content-bg-color !default;
|
|
|
259
261
|
$schedule-bgr-date-time-icon-padding-right: 13px !default;
|
|
260
262
|
$schedule-bgr-more-event-close-icon-padding: unset !default;
|
|
261
263
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-nrml-font-size !default;
|
|
264
|
+
$schedule-calendar-width: 300px !default;
|
|
265
|
+
$schedule-bgr-calendar-width: 345px !default;
|
|
262
266
|
|
|
263
267
|
@mixin tbar-btn-animation {
|
|
264
268
|
content: '';
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@use 'sass:color';
|
|
2
|
+
|
|
1
3
|
$schedule-skin: $skin-name !default;
|
|
2
4
|
$schedule-header-bg-color: $grey-white !default;
|
|
3
5
|
$schedule-header-border-color: $grey-dd !default;
|
|
@@ -50,7 +52,7 @@ $schedule-month-date-header-cell-text-transform: none !default;
|
|
|
50
52
|
$schedule-appointment-details-padding: 0 4px !default;
|
|
51
53
|
$schedule-appointment-bg-color: $brand-primary !default;
|
|
52
54
|
$schedule-appointment-font-color: $brand-primary-font !default;
|
|
53
|
-
$schedule-appointment-border-color:
|
|
55
|
+
$schedule-appointment-border-color: color.adjust($schedule-appointment-bg-color, $lightness: 40%) !default;
|
|
54
56
|
$schedule-appointment-border-radius: 2px !default;
|
|
55
57
|
$schedule-appointment-active-border-color: $grey-base !default;
|
|
56
58
|
$schedule-month-agenda-app-indicator-color: $grey-light-font !default;
|
|
@@ -259,6 +261,8 @@ $schedule-header-icon-wrapper-bg-color: $schedule-content-bg-color !default;
|
|
|
259
261
|
$schedule-bgr-date-time-icon-padding-right: 13px !default;
|
|
260
262
|
$schedule-bgr-more-event-close-icon-padding: unset !default;
|
|
261
263
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-nrml-font-size !default;
|
|
264
|
+
$schedule-calendar-width: 300px !default;
|
|
265
|
+
$schedule-bgr-calendar-width: 345px !default;
|
|
262
266
|
|
|
263
267
|
@mixin tbar-btn-animation {
|
|
264
268
|
content: '';
|
|
@@ -1,10 +1,12 @@
|
|
|
1
|
+
@use 'sass:color';
|
|
2
|
+
|
|
1
3
|
$border-type: solid !default;
|
|
2
4
|
$border-size: 1px !default;
|
|
3
5
|
$schedule-skin: $skin-name !default;
|
|
4
6
|
$schedule-header-bg-color: $content-bg !default;
|
|
5
7
|
$schedule-header-border-color: $gray-300 !default;
|
|
6
8
|
$schedule-header-font-color: $gray-900 !default;
|
|
7
|
-
$schedule-header-hover-color:
|
|
9
|
+
$schedule-header-hover-color: color.adjust($gray-600, $lightness: -7.5%) !default;
|
|
8
10
|
$schedule-content-bg-color: $content-bg !default;
|
|
9
11
|
$schedule-content-border-color: $gray-300 !default;
|
|
10
12
|
$schedule-primary-content-font-color: $gray-900 !default;
|
|
@@ -16,7 +18,7 @@ $schedule-current-date-bg-color: $primary !default;
|
|
|
16
18
|
$schedule-disable-dates-color: rgba($black, .08) !default;
|
|
17
19
|
$schedule-disable-font-color: $primary-font !default;
|
|
18
20
|
$schedule-workhour-bg-color: $content-bg !default;
|
|
19
|
-
$schedule-hover-bg-color:
|
|
21
|
+
$schedule-hover-bg-color: color.adjust($gray-100, $lightness: -2%) !default;
|
|
20
22
|
$schedule-resource-focus-bg-color: $schedule-hover-bg-color !default;
|
|
21
23
|
$schedule-hover-font-color: $gray-900 !default;
|
|
22
24
|
$schedule-active-color: $primary-font !default;
|
|
@@ -56,7 +58,7 @@ $schedule-month-date-header-cell-text-transform: none !default;
|
|
|
56
58
|
$schedule-appointment-details-padding: 4px 8px 0 !default;
|
|
57
59
|
$schedule-appointment-bg-color: $primary !default;
|
|
58
60
|
$schedule-appointment-font-color: $primary-font !default;
|
|
59
|
-
$schedule-appointment-border-color:
|
|
61
|
+
$schedule-appointment-border-color: color.adjust($schedule-appointment-bg-color, $lightness: 40%) !default;
|
|
60
62
|
$schedule-appointment-border-radius: 4px !default;
|
|
61
63
|
$schedule-appointment-selected-border: 1px solid rgba($black, .5) !default;
|
|
62
64
|
$schedule-appointment-active-border-color: #333 !default;
|
|
@@ -125,7 +127,7 @@ $schedule-tbar-default-bg: $gray-100 !default;
|
|
|
125
127
|
$schedule-tbar-separator-border: $gray-300 !default;
|
|
126
128
|
$schedule-tbar-border-nav: 1px !default;
|
|
127
129
|
$schedule-tbar-border-nav-type: solid !default;
|
|
128
|
-
$schedule-tbar-hover-bg:
|
|
130
|
+
$schedule-tbar-hover-bg: color.adjust($gray-600, $lightness: -10%) !default;
|
|
129
131
|
$schedule-tbar-hover-font: $primary-font !default;
|
|
130
132
|
$schedule-tbar-nav-bgr-width: 32px !default;
|
|
131
133
|
$schedule-tbar-bgr-item-size: 34px !default;
|
|
@@ -262,6 +264,8 @@ $schedule-header-icon-wrapper-bg-color: $schedule-content-bg-color !default;
|
|
|
262
264
|
$schedule-bgr-date-time-icon-padding-right: 10px !default;
|
|
263
265
|
$schedule-bgr-more-event-close-icon-padding: unset !default;
|
|
264
266
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-nrml-font-size !default;
|
|
267
|
+
$schedule-calendar-width: 300px !default;
|
|
268
|
+
$schedule-bgr-calendar-width: 345px !default;
|
|
265
269
|
|
|
266
270
|
@mixin tbar-btn-animation {
|
|
267
271
|
content: '';
|
|
@@ -270,4 +274,4 @@ $schedule-bgr-tbar-btn-text-font-size: $schedule-header-nrml-font-size !default;
|
|
|
270
274
|
content: '';
|
|
271
275
|
}
|
|
272
276
|
|
|
273
|
-
$schedule-tbar-border-hover-color:
|
|
277
|
+
$schedule-tbar-border-hover-color: color.adjust($gray-600, $lightness: -12.5%) !default;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@use 'sass:color';
|
|
2
|
+
|
|
1
3
|
$schedule-skin: $skin-name !default;
|
|
2
4
|
$schedule-date-navigation-font-size: $text-lg !default;
|
|
3
5
|
$schedule-header-nrml-font-size: $text-sm !default;
|
|
@@ -229,7 +231,7 @@ $schedule-work-cells-bg-color: $content-bg-color-alt1 !default;
|
|
|
229
231
|
$schedule-current-date-bg-color: $primary !default;
|
|
230
232
|
$schedule-disable-dates-color: $content-bg-color-alt2 !default;
|
|
231
233
|
$schedule-workhour-bg-color: $content-bg-color !default;
|
|
232
|
-
$schedule-hover-bg-color:
|
|
234
|
+
$schedule-hover-bg-color: color.adjust($content-bg-color-alt1, $lightness: -2%) !default;
|
|
233
235
|
$schedule-resource-focus-bg-color: $schedule-hover-bg-color !default;
|
|
234
236
|
$schedule-active-color: $content-bg-color !default;
|
|
235
237
|
$schedule-current-day-active-color: $schedule-active-color !default;
|
|
@@ -264,6 +266,8 @@ $schedule-bgr-date-time-icon-padding-right: 10px !default;
|
|
|
264
266
|
$schedule-bgr-more-event-close-icon-padding: unset !default;
|
|
265
267
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
266
268
|
$schedule-multiple-event-popup-icon-bg-color: $schedule-header-bg-color !default;
|
|
269
|
+
$schedule-calendar-width: 300px !default;
|
|
270
|
+
$schedule-bgr-calendar-width: 345px !default;
|
|
267
271
|
|
|
268
272
|
@mixin tbar-btn-animation {
|
|
269
273
|
content: '';
|
|
@@ -266,6 +266,8 @@ $schedule-bgr-date-time-icon-padding-right: 10px !default;
|
|
|
266
266
|
$schedule-bgr-more-event-close-icon-padding: unset !default;
|
|
267
267
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
268
268
|
$schedule-multiple-event-popup-icon-bg-color: $schedule-header-bg-color !default;
|
|
269
|
+
$schedule-calendar-width: 300px !default;
|
|
270
|
+
$schedule-bgr-calendar-width: 345px !default;
|
|
269
271
|
|
|
270
272
|
@mixin tbar-btn-animation {
|
|
271
273
|
content: '';
|
|
@@ -259,6 +259,8 @@ $schedule-bgr-date-time-icon-padding-right: 13px !default;
|
|
|
259
259
|
$schedule-bgr-rtl-event-popup-date-time-icon-padding-right: 13px !default;
|
|
260
260
|
$schedule-bgr-more-event-close-icon-padding: unset !default;
|
|
261
261
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-nrml-font-size !default;
|
|
262
|
+
$schedule-calendar-width: 300px !default;
|
|
263
|
+
$schedule-bgr-calendar-width: 345px !default;
|
|
262
264
|
|
|
263
265
|
@mixin tbar-btn-animation {
|
|
264
266
|
content: '';
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@use 'sass:color';
|
|
2
|
+
|
|
1
3
|
$schedule-skin: $skin-name !default;
|
|
2
4
|
$schedule-header-bg-color: $neutral-white !default;
|
|
3
5
|
$schedule-header-border-color: $neutral-quintenaryalt !default;
|
|
@@ -54,7 +56,7 @@ $schedule-timezone-enable-bgr-height: 70px !default;
|
|
|
54
56
|
$schedule-appointment-bg-color: $theme-primary !default;
|
|
55
57
|
$schedule-appointment-details-padding: 0 4px !default;
|
|
56
58
|
$schedule-appointment-font-color: $theme-primary-font !default;
|
|
57
|
-
$schedule-appointment-border-color:
|
|
59
|
+
$schedule-appointment-border-color: color.adjust($schedule-appointment-bg-color, $lightness: 40%) !default;
|
|
58
60
|
$schedule-appointment-border-radius: 2px !default;
|
|
59
61
|
$schedule-appointment-selected-border: 1px solid rgba($neutral-black, .5) !default;
|
|
60
62
|
$schedule-appointment-active-border-color: #000 !default;
|
|
@@ -259,6 +261,8 @@ $schedule-header-icon-wrapper-bg-color: $schedule-content-bg-color !default;
|
|
|
259
261
|
$schedule-bgr-date-time-icon-padding-right: 13px !default;
|
|
260
262
|
$schedule-bgr-more-event-close-icon-padding: unset !default;
|
|
261
263
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-nrml-font-size !default;
|
|
264
|
+
$schedule-calendar-width: 300px !default;
|
|
265
|
+
$schedule-bgr-calendar-width: 345px !default;
|
|
262
266
|
|
|
263
267
|
@mixin tbar-btn-animation {
|
|
264
268
|
content: '';
|
|
@@ -113,7 +113,7 @@ $schedule-tbar-bgr-min-height: 54px !default;
|
|
|
113
113
|
$schedule-tbar-border-bottom-size: 1px solid $border-light !default;
|
|
114
114
|
$schedule-tbar-box-shadow: 0 1px 2px rgba($black, .15) !default;
|
|
115
115
|
$schedule-tbar-box-shadow-bottom-margin: 3px !default;
|
|
116
|
-
$schedule-tbar-min-height:
|
|
116
|
+
$schedule-tbar-min-height: 40px !default;
|
|
117
117
|
$schedule-tbar-down-arrow-font-size: $text-base !default;
|
|
118
118
|
$schedule-tbar-down-arrow-margin-top: 4px !default;
|
|
119
119
|
$schedule-tbar-default-icon-color: $icon-color !default;
|
|
@@ -264,6 +264,8 @@ $schedule-bgr-date-time-icon-padding-right: 13px !default;
|
|
|
264
264
|
$schedule-bgr-more-event-close-icon-padding: unset !default;
|
|
265
265
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-nrml-font-size !default;
|
|
266
266
|
$schedule-header-icon-wrapper-bg-color: $schedule-content-bg-color !default;
|
|
267
|
+
$schedule-calendar-width: 260px !default;
|
|
268
|
+
$schedule-bgr-calendar-width: 306px !default;
|
|
267
269
|
|
|
268
270
|
@mixin tbar-btn-animation {
|
|
269
271
|
content: '';
|
|
@@ -243,7 +243,7 @@ $schedule-val-error-bg-color: $danger-light !default;
|
|
|
243
243
|
$schedule-block-appointment-bg-color: $holiday-bg-color !default;
|
|
244
244
|
$schedule-block-appointment-font-color: $content-text-color !default;
|
|
245
245
|
$schedule-resource-color-margin-top: 10px !default;
|
|
246
|
-
$schedule-bigger-resource-color-margin-top:
|
|
246
|
+
$schedule-bigger-resource-color-margin-top: 12px !default;
|
|
247
247
|
$schedule-resource-color-size: 14px !default;
|
|
248
248
|
$schedule-bigger-resource-color-size: 16px !default;
|
|
249
249
|
$schedule-resource-tree-text-content-padding: 0 0 0 12px !default;
|
|
@@ -264,6 +264,8 @@ $schedule-header-icon-wrapper-bg-color: $schedule-content-bg-color !default;
|
|
|
264
264
|
$schedule-bgr-date-time-icon-padding-right: 12px !default;
|
|
265
265
|
$schedule-bgr-more-event-close-icon-padding: 1px !default;
|
|
266
266
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
267
|
+
$schedule-calendar-width: 295px !default;
|
|
268
|
+
$schedule-bgr-calendar-width: 345px !default;
|
|
267
269
|
|
|
268
270
|
@mixin tbar-btn-animation {
|
|
269
271
|
content: '';
|
|
@@ -264,6 +264,8 @@ $schedule-bgr-date-time-icon-padding-right: 13px !default;
|
|
|
264
264
|
$schedule-bgr-more-event-close-icon-padding: unset !default;
|
|
265
265
|
$schedule-header-icon-wrapper-bg-color: $schedule-content-bg-color !default;
|
|
266
266
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-nrml-font-size !default;
|
|
267
|
+
$schedule-calendar-width: 300px !default;
|
|
268
|
+
$schedule-bgr-calendar-width: 345px !default;
|
|
267
269
|
|
|
268
270
|
@mixin tbar-btn-animation {
|
|
269
271
|
content: '';
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@use 'sass:color';
|
|
2
|
+
|
|
1
3
|
$schedule-skin: $skin-name !default;
|
|
2
4
|
$schedule-header-bg-color: $bg-base-0 !default;
|
|
3
5
|
$schedule-header-border-color: $border-default !default;
|
|
@@ -51,7 +53,7 @@ $schedule-month-date-header-cell-text-align: left !default;
|
|
|
51
53
|
$schedule-month-date-header-cell-text-transform: none !default;
|
|
52
54
|
$schedule-timezone-enable-nrml-height: 60px !default;
|
|
53
55
|
$schedule-timezone-enable-bgr-height: 70px !default;
|
|
54
|
-
$schedule-appointment-bg-color:
|
|
56
|
+
$schedule-appointment-bg-color: color.adjust($success-bg, $lightness: 5%) !default;
|
|
55
57
|
$schedule-appointment-details-padding: 0 4px !default;
|
|
56
58
|
$schedule-appointment-font-color: $content-font !default;
|
|
57
59
|
$schedule-appointment-active-border-color: $selection-bg !default;
|
|
@@ -161,7 +163,7 @@ $schedule-popup-icon-hover-bg-color: $hover-bg !default;
|
|
|
161
163
|
$schedule-popup-content-icon-color: $schedule-primary-content-font-color !default;
|
|
162
164
|
$schedule-event-popup-content-padding: 0 18px 16px 26px !default;
|
|
163
165
|
$schedule-event-popup-fields-padding: 12px !default;
|
|
164
|
-
$schedule-popup-title-color: rgba($color:
|
|
166
|
+
$schedule-popup-title-color: rgba($color: color.adjust($success-bg, $lightness: 5%), $alpha: .3) !default;
|
|
165
167
|
$schedule-popup-btn-border: $border-size $border-type $content-font !default;
|
|
166
168
|
$schedule-alert-dialog-border: none !default;
|
|
167
169
|
$schedule-btn-txt-bgr-padding: 5px 12px !default;
|
|
@@ -259,6 +261,8 @@ $schedule-header-icon-wrapper-bg-color: $schedule-content-bg-color !default;
|
|
|
259
261
|
$schedule-bgr-date-time-icon-padding-right: 13px !default;
|
|
260
262
|
$schedule-bgr-more-event-close-icon-padding: unset !default;
|
|
261
263
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-nrml-font-size !default;
|
|
264
|
+
$schedule-calendar-width: 280px !default;
|
|
265
|
+
$schedule-bgr-calendar-width: 345px !default;
|
|
262
266
|
|
|
263
267
|
@mixin tbar-btn-animation {
|
|
264
268
|
content: '';
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@use 'sass:color';
|
|
2
|
+
|
|
1
3
|
$schedule-skin: $skin-name !default;
|
|
2
4
|
$schedule-header-bg-color: $bg-base-0 !default;
|
|
3
5
|
$schedule-header-border-color: $border-default !default;
|
|
@@ -51,7 +53,7 @@ $schedule-month-date-header-cell-text-align: left !default;
|
|
|
51
53
|
$schedule-month-date-header-cell-text-transform: none !default;
|
|
52
54
|
$schedule-timezone-enable-nrml-height: 60px !default;
|
|
53
55
|
$schedule-timezone-enable-bgr-height: 70px !default;
|
|
54
|
-
$schedule-appointment-bg-color:
|
|
56
|
+
$schedule-appointment-bg-color: color.adjust($success-bg, $lightness: 5%) !default;
|
|
55
57
|
$schedule-appointment-details-padding: 0 4px !default;
|
|
56
58
|
$schedule-appointment-font-color: $invert-font !default;
|
|
57
59
|
$schedule-appointment-active-border-color: $selection-bg !default;
|
|
@@ -161,7 +163,7 @@ $schedule-popup-icon-hover-bg-color: $hover-bg !default;
|
|
|
161
163
|
$schedule-popup-content-icon-color: $schedule-primary-content-font-color !default;
|
|
162
164
|
$schedule-event-popup-content-padding: 0 18px 16px 26px !default;
|
|
163
165
|
$schedule-event-popup-fields-padding: 12px !default;
|
|
164
|
-
$schedule-popup-title-color: rgba($color:
|
|
166
|
+
$schedule-popup-title-color: rgba($color: color.adjust($success-bg, $lightness: 5%), $alpha: .3) !default;
|
|
165
167
|
$schedule-popup-btn-border: $border-size $border-type $content-font !default;
|
|
166
168
|
$schedule-alert-dialog-border: none !default;
|
|
167
169
|
$schedule-btn-txt-bgr-padding: 5px 12px !default;
|
|
@@ -259,6 +261,8 @@ $schedule-following-events-dlg-padding: 2% !default;
|
|
|
259
261
|
$schedule-bgr-date-time-icon-padding-right: 13px !default;
|
|
260
262
|
$schedule-bgr-more-event-close-icon-padding: unset !default;
|
|
261
263
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-nrml-font-size !default;
|
|
264
|
+
$schedule-calendar-width: 300px !default;
|
|
265
|
+
$schedule-bgr-calendar-width: 350px !default;
|
|
262
266
|
|
|
263
267
|
@mixin tbar-btn-animation {
|
|
264
268
|
content: '';
|
|
@@ -179,9 +179,14 @@
|
|
|
179
179
|
border-right: $schedule-tbar-separator-size $border-type $schedule-tbar-separator-border;
|
|
180
180
|
}
|
|
181
181
|
|
|
182
|
-
&.e-date-range .e-tbar-btn
|
|
183
|
-
|
|
184
|
-
|
|
182
|
+
&.e-date-range .e-tbar-btn {
|
|
183
|
+
&.e-schedule-date-range-tbtn {
|
|
184
|
+
width: auto;
|
|
185
|
+
}
|
|
186
|
+
.e-tbar-btn-text {
|
|
187
|
+
font-size: $schedule-header-nrml-font-size;
|
|
188
|
+
text-transform: initial;
|
|
189
|
+
}
|
|
185
190
|
}
|
|
186
191
|
}
|
|
187
192
|
}
|
|
@@ -1309,6 +1314,11 @@
|
|
|
1309
1314
|
}
|
|
1310
1315
|
|
|
1311
1316
|
.e-month-view {
|
|
1317
|
+
.e-month-event-table {
|
|
1318
|
+
position: absolute;
|
|
1319
|
+
top: 0;
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1312
1322
|
.e-content-wrap table tr:last-child td {
|
|
1313
1323
|
border-bottom-width: 0;
|
|
1314
1324
|
}
|
|
@@ -1510,7 +1520,7 @@
|
|
|
1510
1520
|
border: 0;
|
|
1511
1521
|
flex: 0 25%;
|
|
1512
1522
|
max-width: 100%;
|
|
1513
|
-
min-width:
|
|
1523
|
+
min-width: $schedule-calendar-width;
|
|
1514
1524
|
padding: 10px;
|
|
1515
1525
|
@if ($theme-name == 'fluent2') {
|
|
1516
1526
|
box-shadow: none;
|
|
@@ -2472,6 +2482,10 @@
|
|
|
2472
2482
|
.e-agenda-view {
|
|
2473
2483
|
background: $schedule-agenda-color;
|
|
2474
2484
|
|
|
2485
|
+
.e-agenda-load-more {
|
|
2486
|
+
font-size: 14px;
|
|
2487
|
+
}
|
|
2488
|
+
|
|
2475
2489
|
.e-content-wrap table td:first-child,
|
|
2476
2490
|
.e-date-column {
|
|
2477
2491
|
vertical-align: top;
|
|
@@ -2783,11 +2797,19 @@
|
|
|
2783
2797
|
visibility: hidden;
|
|
2784
2798
|
}
|
|
2785
2799
|
|
|
2800
|
+
.e-field-error-message {
|
|
2801
|
+
display: block;
|
|
2802
|
+
}
|
|
2803
|
+
|
|
2786
2804
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2787
|
-
width:
|
|
2805
|
+
width: 440px;
|
|
2788
2806
|
|
|
2789
2807
|
.e-footer-content {
|
|
2790
2808
|
padding: $schedule-following-events-dlg-padding;
|
|
2809
|
+
|
|
2810
|
+
button {
|
|
2811
|
+
margin-bottom: 6px;
|
|
2812
|
+
}
|
|
2791
2813
|
}
|
|
2792
2814
|
@media screen and (max-width: 767px) {
|
|
2793
2815
|
width: 289px;
|
|
@@ -2816,10 +2838,10 @@
|
|
|
2816
2838
|
|
|
2817
2839
|
.e-footer-content {
|
|
2818
2840
|
border-top: $schedule-alert-dialog-border;
|
|
2819
|
-
}
|
|
2820
2841
|
|
|
2821
|
-
|
|
2822
|
-
|
|
2842
|
+
button {
|
|
2843
|
+
margin-bottom: 6px;
|
|
2844
|
+
}
|
|
2823
2845
|
}
|
|
2824
2846
|
|
|
2825
2847
|
&.e-rtl {
|
|
@@ -2984,7 +3006,12 @@
|
|
|
2984
3006
|
}
|
|
2985
3007
|
}
|
|
2986
3008
|
}
|
|
2987
|
-
|
|
3009
|
+
|
|
3010
|
+
.e-editor-content-item-template {
|
|
3011
|
+
text-overflow: ellipsis;
|
|
3012
|
+
overflow: hidden;
|
|
3013
|
+
}
|
|
3014
|
+
|
|
2988
3015
|
/*! schedule event window for smaller viewports*/
|
|
2989
3016
|
@media screen and (max-width: 320px) {
|
|
2990
3017
|
.e-schedule-dialog.e-popup.e-popup-open {
|
|
@@ -3327,6 +3354,9 @@
|
|
|
3327
3354
|
|
|
3328
3355
|
.e-cell-popup,
|
|
3329
3356
|
.e-event-popup {
|
|
3357
|
+
.e-popup-header .e-popup-header-title-text {
|
|
3358
|
+
display: none;
|
|
3359
|
+
}
|
|
3330
3360
|
.e-header-icon-wrapper {
|
|
3331
3361
|
display: flex;
|
|
3332
3362
|
justify-content: flex-end;
|
|
@@ -259,6 +259,8 @@ $schedule-header-icon-wrapper-bg-color: unset !default;
|
|
|
259
259
|
$schedule-bgr-date-time-icon-padding-right: 13px !default;
|
|
260
260
|
$schedule-bgr-more-event-close-icon-padding: unset !default;
|
|
261
261
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-nrml-font-size !default;
|
|
262
|
+
$schedule-calendar-width: 260px !default;
|
|
263
|
+
$schedule-bgr-calendar-width: 306px !default;
|
|
262
264
|
|
|
263
265
|
@mixin tbar-btn-animation {
|
|
264
266
|
content: '';
|
|
@@ -259,6 +259,8 @@ $schedule-header-icon-wrapper-bg-color: unset !default;
|
|
|
259
259
|
$schedule-bgr-date-time-icon-padding-right: 13px !default;
|
|
260
260
|
$schedule-bgr-more-event-close-icon-padding: unset !default;
|
|
261
261
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-nrml-font-size !default;
|
|
262
|
+
$schedule-calendar-width: 260px !default;
|
|
263
|
+
$schedule-bgr-calendar-width: 306px !default;
|
|
262
264
|
|
|
263
265
|
@mixin tbar-btn-animation {
|
|
264
266
|
content: '';
|
|
@@ -192,8 +192,8 @@ $schedule-month-agenda-appointment-padding: 0 16px !default;
|
|
|
192
192
|
$schedule-month-agenda-item-padding: 12px 0 !default;
|
|
193
193
|
$schedule-all-day-section-hover-color: $schedule-tbar-default-icon-color !default;
|
|
194
194
|
$schedule-timeline-resources-width: 224px !default;
|
|
195
|
-
$schedule-resource-color-margin-top:
|
|
196
|
-
$schedule-bigger-resource-color-margin-top:
|
|
195
|
+
$schedule-resource-color-margin-top: 9px !default;
|
|
196
|
+
$schedule-bigger-resource-color-margin-top: 11px !default;
|
|
197
197
|
$schedule-resource-color-size: 14px !default;
|
|
198
198
|
$schedule-bigger-resource-color-size: 16px !default;
|
|
199
199
|
$schedule-resource-tree-text-content-padding: 0 0 0 8px !default;
|
|
@@ -266,6 +266,8 @@ $schedule-header-icon-wrapper-bg-color: unset !default;
|
|
|
266
266
|
$schedule-bgr-date-time-icon-padding-right: 8px !default;
|
|
267
267
|
$schedule-bgr-more-event-close-icon-padding: unset !default;
|
|
268
268
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-nrml-font-size !default;
|
|
269
|
+
$schedule-calendar-width: 310px !default;
|
|
270
|
+
$schedule-bgr-calendar-width: 345px !default;
|
|
269
271
|
|
|
270
272
|
@mixin tbar-btn-animation {
|
|
271
273
|
content: '';
|
|
@@ -262,6 +262,8 @@ $schedule-header-icon-wrapper-bg-color: $schedule-content-bg-color !default;
|
|
|
262
262
|
$schedule-bgr-date-time-icon-padding-right: 10px !default;
|
|
263
263
|
$schedule-bgr-more-event-close-icon-padding: 1px !default;
|
|
264
264
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
265
|
+
$schedule-calendar-width: 292px !default;
|
|
266
|
+
$schedule-bgr-calendar-width: 350px !default;
|
|
265
267
|
|
|
266
268
|
@mixin tbar-btn-animation {
|
|
267
269
|
content: '';
|
|
@@ -189,8 +189,8 @@ $schedule-agenda-big-appointment-padding: $schedule-agenda-appointment-padding !
|
|
|
189
189
|
$schedule-month-agenda-appointment-padding: 0 16px !default;
|
|
190
190
|
$schedule-month-agenda-item-padding: 10px 0 !default;
|
|
191
191
|
$schedule-timeline-resources-width: 200px !default;
|
|
192
|
-
$schedule-resource-color-margin-top:
|
|
193
|
-
$schedule-bigger-resource-color-margin-top:
|
|
192
|
+
$schedule-resource-color-margin-top: 8px !default;
|
|
193
|
+
$schedule-bigger-resource-color-margin-top: 11px !default;
|
|
194
194
|
$schedule-resource-color-size: 14px !default;
|
|
195
195
|
$schedule-bigger-resource-color-size: 16px !default;
|
|
196
196
|
$schedule-resource-tree-text-content-padding: 0 0 0 12px !default;
|
|
@@ -266,6 +266,8 @@ $schedule-bgr-date-time-icon-padding-right: 10px !default;
|
|
|
266
266
|
$schedule-bgr-more-event-close-icon-padding: unset !default;
|
|
267
267
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
268
268
|
$schedule-multiple-event-popup-icon-bg-color: $schedule-header-bg-color !default;
|
|
269
|
+
$schedule-calendar-width: 292px !default;
|
|
270
|
+
$schedule-bgr-calendar-width: 350px !default;
|
|
269
271
|
|
|
270
272
|
@mixin tbar-btn-animation {
|
|
271
273
|
content: '';
|