@syncfusion/ej2-schedule 24.2.8 → 25.1.37

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.
Files changed (73) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/dist/ej2-schedule.min.js +2 -2
  3. package/dist/ej2-schedule.umd.min.js +2 -2
  4. package/dist/ej2-schedule.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-schedule.es2015.js +145 -39
  6. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  7. package/dist/es6/ej2-schedule.es5.js +146 -36
  8. package/dist/es6/ej2-schedule.es5.js.map +1 -1
  9. package/dist/global/ej2-schedule.min.js +2 -2
  10. package/dist/global/ej2-schedule.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +16 -16
  13. package/src/recurrence-editor/recurrence-editor.js +1 -2
  14. package/src/schedule/actions/crud.js +9 -0
  15. package/src/schedule/actions/keyboard.d.ts +1 -0
  16. package/src/schedule/actions/keyboard.js +11 -4
  17. package/src/schedule/base/css-constant.d.ts +2 -0
  18. package/src/schedule/base/css-constant.js +2 -0
  19. package/src/schedule/base/interface.d.ts +1 -0
  20. package/src/schedule/base/schedule.d.ts +4 -1
  21. package/src/schedule/base/schedule.js +16 -1
  22. package/src/schedule/base/type.d.ts +1 -0
  23. package/src/schedule/event-renderer/agenda-base.d.ts +1 -1
  24. package/src/schedule/event-renderer/agenda-base.js +36 -14
  25. package/src/schedule/event-renderer/event-base.js +4 -2
  26. package/src/schedule/event-renderer/vertical-view.js +7 -1
  27. package/src/schedule/popups/quick-popups.js +11 -0
  28. package/src/schedule/renderer/agenda.d.ts +1 -0
  29. package/src/schedule/renderer/agenda.js +38 -9
  30. package/src/schedule/renderer/renderer.js +11 -3
  31. package/styles/bootstrap-dark.css +12 -2
  32. package/styles/bootstrap.css +12 -2
  33. package/styles/bootstrap4.css +9 -3
  34. package/styles/bootstrap5-dark.css +9 -3
  35. package/styles/bootstrap5.css +9 -3
  36. package/styles/fabric-dark.css +8 -2
  37. package/styles/fabric.css +8 -2
  38. package/styles/fluent-dark.css +13 -2
  39. package/styles/fluent.css +13 -2
  40. package/styles/highcontrast-light.css +8 -2
  41. package/styles/highcontrast.css +8 -2
  42. package/styles/material-dark.css +17 -2
  43. package/styles/material.css +17 -2
  44. package/styles/material3-dark.css +9 -3
  45. package/styles/material3.css +9 -3
  46. package/styles/recurrence-editor/_bds-definition.scss +15 -0
  47. package/styles/schedule/_bds-definition.scss +287 -0
  48. package/styles/schedule/_bootstrap4-definition.scss +1 -1
  49. package/styles/schedule/_bootstrap5-definition.scss +1 -1
  50. package/styles/schedule/_fusionnew-definition.scss +1 -1
  51. package/styles/schedule/_layout.scss +6 -1
  52. package/styles/schedule/_material3-definition.scss +1 -1
  53. package/styles/schedule/_tailwind-definition.scss +1 -1
  54. package/styles/schedule/bootstrap-dark.css +12 -2
  55. package/styles/schedule/bootstrap.css +12 -2
  56. package/styles/schedule/bootstrap4.css +9 -3
  57. package/styles/schedule/bootstrap5-dark.css +9 -3
  58. package/styles/schedule/bootstrap5.css +9 -3
  59. package/styles/schedule/fabric-dark.css +8 -2
  60. package/styles/schedule/fabric.css +8 -2
  61. package/styles/schedule/fluent-dark.css +13 -2
  62. package/styles/schedule/fluent.css +13 -2
  63. package/styles/schedule/highcontrast-light.css +8 -2
  64. package/styles/schedule/highcontrast.css +8 -2
  65. package/styles/schedule/icons/_bds.scss +235 -0
  66. package/styles/schedule/material-dark.css +17 -2
  67. package/styles/schedule/material.css +17 -2
  68. package/styles/schedule/material3-dark.css +9 -3
  69. package/styles/schedule/material3.css +9 -3
  70. package/styles/schedule/tailwind-dark.css +9 -3
  71. package/styles/schedule/tailwind.css +9 -3
  72. package/styles/tailwind-dark.css +9 -3
  73. package/styles/tailwind.css +9 -3
@@ -0,0 +1,287 @@
1
+ /*! Schedule component's theme definitions and variables */
2
+ $schedule-skin: $skin-name !default;
3
+
4
+ $schedule-header-bg-color: $content-bg-color !default;
5
+ $schedule-header-border-color: $border-light !default;
6
+ $schedule-header-font-color: $content-text-color-alt1 !default;
7
+ $schedule-header-hover-color: $content-bg-color-alt3 !default;
8
+ $schedule-content-bg-color: $content-bg-color !default;
9
+ $schedule-content-border-color: $border-light !default;
10
+ $schedule-primary-content-font-color: $content-text-color !default;
11
+ $schedule-secondary-content-font-color: $content-text-color-alt2 !default;
12
+ $schedule-select-font-color: $content-text-color-selected !default;
13
+ $schedule-select-bg-color: $content-bg-color-selected !default;
14
+ $schedule-work-cells-bg-color: $content-bg-color-alt1 !default;
15
+ $schedule-current-date-bg-color: $primary !default;
16
+ $schedule-disable-dates-color: $content-bg-color-alt2 !default;
17
+ $schedule-disable-font-color: $content-text-color !default;
18
+ $schedule-workhour-bg-color: $content-bg-color !default;
19
+ $schedule-hover-bg-color: $content-bg-color-hover !default;
20
+ $schedule-resource-focus-bg-color: $schedule-hover-bg-color !default;
21
+ $schedule-hover-font-color: $content-text-color-hover !default;
22
+ $schedule-active-color: $primary-text-color !default;
23
+ $schedule-active-border-color: $primary !default;
24
+ $schedule-active-font-color: $primary !default;
25
+ $schedule-calendar-background: $flyout-bg-color !default;
26
+ $border-size: 1px;
27
+ $border-type: solid !default;
28
+ $schedule-current-day-active-color: $schedule-active-color !default;
29
+ $schedule-time-cells-font-color: $schedule-secondary-content-font-color !default;
30
+
31
+ $schedule-alternate-cell-border: dotted !default;
32
+ $schedule-header-cells-padding: 8px 8px 0 !default;
33
+ $schedule-agenda-big-appointment-padding: 7px 16px !default;
34
+ $schedule-header-cells-height: 60px !default;
35
+ $schedule-header-cells-width: 36px !default;
36
+ $schedule-month-header-cells-nrml-height: 34px !default;
37
+ $schedule-month-header-cells-bgr-height: 38px !default;
38
+ $schedule-month-header-cells-padding: 8px !default;
39
+ $schedule-allday-cells-height: 0 !default;
40
+ $schedule-work-cells-height: 36px !default;
41
+ $schedule-work-cells-width: 36px !default;
42
+ $schedule-date-navigation-font-size: $text-lg !default;
43
+ $schedule-header-nrml-font-size: $text-sm !default;
44
+ $schedule-header-bgr-font-size: $text-base !default;
45
+ $schedule-header-device-font-size: $text-base !default;
46
+ $schedule-content-nrml-font-size: $text-sm !default;
47
+ $schedule-content-bgr-font-size: $text-base !default;
48
+ $schedule-content-device-font-size: $text-sm !default;
49
+ $schedule-date-month-header-wrap-bgr-font-size: $text-base !default;
50
+ $schedule-date-header-wrap-nrml-font-size: $text-sm !default;
51
+ $schedule-date-header-wrap-bgr-font-size: $text-base !default;
52
+ $schedule-date-header-wrap-device-font-size: $text-base !default;
53
+ $schedule-popup-footer-padding: 8px 18px 8px 18px !default;
54
+ $schedule-date-header-line-height: 22px !default;
55
+ $schedule-date-header-margin: 3px 3px 2px !default;
56
+ $schedule-date-header-margin-rtl: $schedule-date-header-margin !default;
57
+ $schedule-month-date-header-cell-font-size: $text-xs !default;
58
+ $schedule-month-date-header-cell-text-align: center !default;
59
+ $schedule-month-date-header-cell-text-transform: uppercase !default;
60
+
61
+ $schedule-timezone-enable-nrml-height: 54px !default;
62
+ $schedule-timezone-enable-bgr-height: 64px !default;
63
+ $schedule-appointment-details-padding: 0 4px !default;
64
+ $schedule-appointment-bg-color: $primary !default;
65
+ $schedule-appointment-font-color: $primary-text-color !default;
66
+ $schedule-appointment-border-color: $border-light !default;
67
+ $schedule-appointment-selected-border: 1px solid rgba($color: $border-light, $alpha: .5) !default;
68
+ $schedule-appointment-border-radius: 2px !default;
69
+ $schedule-appointment-active-border-color: $icon-color !default;
70
+ $schedule-month-agenda-app-indicator-color: $primary !default;
71
+ $schedule-month-appointment-height: 26px !default;
72
+ $schedule-month-appointment-text-line-height: 18px !default;
73
+ $schedule-appointment-text-line-height: 18px !default;
74
+ $schedule-month-appointment-time-padding: 1.5px !default;
75
+ $schedule-month-appointment-subject-padding: 1px 2px !default;
76
+ $schedule-timescale-appointment-height: 54px !default;
77
+ $schedule-appointment-detail-line-height: $schedule-appointment-text-line-height !default;
78
+ $schedule-drag-appointment-opacity: .4;
79
+
80
+ $schedule-header-day-nrml-font-size: $text-xs !default;
81
+ $schedule-header-day-bgr-font-size: $text-sm !default;
82
+ $schedule-header-day-device-font-size: $text-sm !default;
83
+ $schedule-header-day-line-height: 18px !default;
84
+ $schedule-header-day-padding-bottom: 4px !default;
85
+ $schedule-header-date-device-font-size: $text-lg !default;
86
+ $schedule-header-date-nrml-font-size: $text-base !default;
87
+ $schedule-header-date-bgr-font-size: $text-lg !default;
88
+ $schedule-time-scale-nrml-font-size: $text-xs !default;
89
+ $schedule-time-scale-bgr-font-size: $text-sm !default;
90
+ $schedule-time-scale-device-font-size: $text-xs !default;
91
+ $schedule-current-time-nrml-font-size: $text-xxs !default;
92
+ $schedule-current-time-bgr-font-size: $text-xs !default;
93
+ $schedule-current-time-bgr-device-font-size: $text-xs !default;
94
+ $schedule-popup-header-icon-font-size: $text-lg !default;
95
+ $schedule-time-scale-width: 85px !default;
96
+ $schedule-device-time-scale-width: 60px !default;
97
+ $schedule-header-date-line-height: 24px !default;
98
+ $schedule-header-padding-top: 0 !default;
99
+
100
+ $schedule-vertical-work-cells-border: 0 0 1px 1px !default;
101
+ $schedule-rtl-vertical-work-cells-border: 0 1px 1px 0 !default;
102
+ $schedule-month-work-cells-border: 0 0 1px 1px !default;
103
+ $schedule-month-work-cells-height: 75px !default;
104
+ $schedule-rtl-month-work-cells-border: 0 1px 1px 0 !default;
105
+ $schedule-month-agenda-header-cells-border: 0 0 1px 0 !default;
106
+ $schedule-month-agenda-work-cells-border: 0 !default;
107
+ $schedule-rtl-month-agenda-work-cells-border: 0 !default;
108
+ $schedule-month-agenda-border: 2px solid $schedule-content-border-color !default;
109
+ $schedule-agenda-color: $content-bg-color !default;
110
+ $schedule-agenda-date-header-padding: 8px 34px 14px 18px !default;
111
+ $schedule-agenda-item-padding: 10px 0 !default;
112
+ $schedule-agenda-appointment-padding: 0 12px !default;
113
+ $schedule-month-agenda-appointment-padding: 0 16px !default;
114
+ $schedule-month-agenda-item-padding: 16px 0 0 !default;
115
+ $schedule-popup-content-padding: 40px 18px 12px !default;
116
+ $schedule-recurrence-font-size: $text-xs !default;
117
+
118
+ $schedule-tbar-bgr-min-height: 54px !default;
119
+ $schedule-tbar-border-bottom-size: 0 !default;
120
+ $schedule-tbar-box-shadow: 0 1px 2px rgba($color: $black, $alpha: .15) !default;
121
+ $schedule-tbar-box-shadow-bottom-margin: 3px !default;
122
+ $schedule-tbar-min-height: 38px !default;
123
+ $schedule-tbar-down-arrow-font-size: $text-lg !default;
124
+ $schedule-tbar-down-arrow-margin-top: 2px !default;
125
+ $schedule-tbar-default-icon-color: $icon-color !default;
126
+ $schedule-tbar-separator-size: $border-size !default;
127
+ $schedule-tbar-default-bg: $content-bg-color-alt2 !default;
128
+ $schedule-tbar-separator-border: $border-light !default;
129
+ $schedule-tbar-border-nav: $border-light !default;
130
+ $schedule-tbar-border-nav-type: solid !default;
131
+ $schedule-tbar-hover-bg: $content-bg-color-alt3 !default;
132
+ $schedule-tbar-hover-font: rgba($color: $primary, $alpha: .87) !default;
133
+ $schedule-tbar-nav-bgr-width: 32px !default;
134
+ $schedule-tbar-bgr-item-size: 34px !default;
135
+ $schedule-tbar-bgr-size: $schedule-tbar-bgr-min-height !default;
136
+ $schedule-tbar-bgr-items-size: $schedule-tbar-bgr-min-height !default;
137
+ $schedule-tbar-separator-bgr-height: calc(100% - 15px) !default;
138
+ $schedule-tbar-separator-bgr-mrgn: 7.5px 3px !default;
139
+ $schedule-tbar-separator-bgr-minheight: 38px !default;
140
+ $schedule-tbar-btn-icon-bgr-width: 24px !default;
141
+ $schedule-tbar-btn-bgr-mrgn: 4px 0 !default;
142
+ $schedule-tbar-btn-bgr-line-height: 25px !default;
143
+ $schedule-tbar-btn-bgr-minheight: 24px !default;
144
+ $schedule-tbar-btn-bgr-minwidth: 24px !default;
145
+ $schedule-tbar-btn-bgr-padding: 0 1px !default;
146
+ $schedule-tbar-btn-icn-bgr-padding: 4px 6px !default;
147
+ $schedule-tbar-btn-icn-right-bgr-padding: 3px 0 0 12px !default;
148
+ $schedule-tbar-right-items-btn-border: none !default;
149
+ $schedule-tbar-right-items-btn-border-radius: 0 !default;
150
+ $schedule-tbar-right-active-items-btn-border: none !default;
151
+ $schedule-device-tbar-right-items-btn-border-radius: 0 !default;
152
+ $schedule-device-tbar-right-items-btn-border: none !default;
153
+ $schedule-device-font-size: 8px !default;
154
+
155
+ $schedule-content-nrml-font-text-transform: none !default;
156
+ $schedule-header-hover-border-radius: 100% !default;
157
+ $schedule-more-popup-wrapper-border-radius: 6px !default;
158
+ $schedule-box-shadow: 0 1px 0 rgba($color: $black, $alpha: .15) !default;
159
+ $schedule-popup-box-shadow-1: $shadow-lg !default;
160
+ $schedule-popup-box-shadow-2: $shadow-lg !default;
161
+ $schedule-popup-box-shadow-3: $shadow-lg !default;
162
+ $schedule-popup-border-color: $border-light !default;
163
+ $schedule-popup-bg-color: $content-bg-color !default;
164
+ $schedule-popup-header-icon-color: $icon-color !default;
165
+ $schedule-popup-header-icon-hover-color: $primary !default;
166
+ $schedule-popup-header-icon-hover-bg-color: rgba($color: $white, $alpha: .15) !default;
167
+ $schedule-popup-icon-color: $schedule-appointment-active-border-color !default;
168
+ $schedule-popup-icon-hover-color: $schedule-appointment-active-border-color !default;
169
+ $schedule-popup-icon-hover-bg-color: $schedule-select-bg-color !default;
170
+ $schedule-popup-content-icon-color: $schedule-secondary-content-font-color !default;
171
+ $schedule-event-popup-content-padding: 0 18px 12px !default;
172
+ $schedule-event-popup-fields-padding: 12px !default;
173
+ $schedule-popup-title-color: rgba($color: $schedule-appointment-bg-color, $alpha: .3) !default;
174
+ $schedule-popup-btn-border: none !default;
175
+ $schedule-alert-dialog-border: none !default;
176
+ $schedule-btn-txt-bgr-padding: 5px 12px !default;
177
+ $schedule-icon-color: $icon-color !default;
178
+ $schedule-popup-header-icon-focus-bg-color: $schedule-popup-icon-hover-bg-color !default;
179
+ $schedule-popup-header-icon-focus-color: $schedule-popup-icon-hover-color !default;
180
+ $schedule-calendar-shadow: $schedule-popup-box-shadow-1 !default;
181
+ $schedule-popup-icon-font-size: $text-lg !default;
182
+ $schedule-popup-icon-padding: 2px 12px 0 0 !default;
183
+ $schedule-popup-footer-text-transform: capitalize !default;
184
+ $schedule-cell-popup-header-icon-padding: 2px 8px 0 0 !default;
185
+ $schedule-cell-popup-span-margin: 14px 0 4px !default;
186
+ $schedule-cell-popup-subject-height: 30px !default;
187
+ $schedule-bgr-cell-popup-content-padding: 48px 24px 16px !default;
188
+ $schedule-bgr-cell-popup-footer-padding: $schedule-popup-footer-padding !default;
189
+ $schedule-event-popup-subject-color: $schedule-primary-content-font-color !default;
190
+ $schedule-event-popup-subject-bg-color: $schedule-popup-title-color !default;
191
+ $schedule-event-popup-subject-border-left: 6px solid $schedule-appointment-bg-color !default;
192
+ $schedule-event-popup-subject-padding: 8px !default;
193
+ $schedule-event-popup-subject-border-radius: 4px !default;
194
+ $schedule-event-popup-footer-display: block !default;
195
+ $schedule-event-popup-header-bg-color: $schedule-popup-bg-color !default;
196
+ $schedule-event-popup-header-icon-display: none !default;
197
+ $schedule-event-popup-header-close-icon-position: relative !default;
198
+ $schedule-event-popup-header-close-icon-right: 2px !default;
199
+ $schedule-device-event-popup-subject-padding: 12px 24px !default;
200
+ $schedule-bgr-event-popup-header-icon-size: 2em !default;
201
+ $schedule-bgr-rtl-event-popup-date-time-icon-padding-right: 16px !default;
202
+ $schedule-multiple-event-popup-icon-bg-color: $schedule-header-bg-color !default;
203
+ $schedule-multiple-event-popup-icon-color: $schedule-popup-header-icon-color !default;
204
+ $schedule-multiple-event-popup-subject-padding: 2px 5px !default;
205
+ $schedule-multiple-event-popup-icon-height: 35px !default;
206
+ $schedule-multiple-event-popup-icon-font-size: 18px !default;
207
+ $schedule-bgr-multiple-event-popup-subject-padding: 2px 5px !default;
208
+ $schedule-bgr-multiple-event-popup-icon-height: 35px !default;
209
+
210
+ $schedule-event-box-shadow-1: $shadow-lg !default;
211
+ $schedule-event-box-shadow-2: $shadow-lg !default;
212
+ $schedule-event-box-shadow-3: $shadow-lg !default;
213
+ $schedule-more-indicator-shadow-color: $shadow !default;
214
+ $schedule-more-indicator-shadow-color-res-tree-popup: $schedule-more-indicator-shadow-color !default;
215
+ $schedule-more-indicator-shadow-color-more-popup: none !default;
216
+ $schedule-more-indicator-nrml-font-size: $text-xxs !default;
217
+ $schedule-more-popup-close-margin-top: 8px !default;
218
+ $schedule-more-popup-padding: 8px 0 !default;
219
+ $schedule-more-appointment-margin-bottom: 2px !default;
220
+ $schedule-event-popup-header-icon-padding: 6px 8px 0 0 !default;
221
+ $schedule-event-popup-subject-wrap-padding: 12px 18px !default;
222
+
223
+ $schedule-timeline-header-time-slots-bg: $schedule-tbar-default-bg !default;
224
+ $schedule-timeline-header-cells-height: 36px !default;
225
+ $schedule-timeline-work-cells-height: 60px !default;
226
+ $schedule-timeline-work-cells-width: 50px !default;
227
+ $schedule-timeline-month-cells-width: 70px !default;
228
+ $schedule-timeline-work-cells-border: 0 0 1px 1px !default;
229
+ $schedule-rtl-timeline-work-cells-border: 0 1px 1px 0 !default;
230
+ $schedule-timeline-resources-width: 200px !default;
231
+ $schedule-timeline-appointment-height: 38px !default;
232
+ $schedule-timeline-year-work-cells-height: 75px !default;
233
+ $schedule-timeline-year-work-cells-width: 100px !default;
234
+ $schedule-timeline-year-resource-text-padding: 4px 12px !default;
235
+ $schedule-timeline-year-resource-cells-padding-left: 12px !default;
236
+ $schedule-timeline-year-left-indent-padding: 0 !default;
237
+ $schedule-timeline-date-header-wrap-padding: 8px 0 8px 8px !default;
238
+ $schedule-dialog-row-container-padding-bottom: 12px !default;
239
+ $schedule-dialog-all-day-row-padding-top: 4px !default;
240
+ $schedule-dialog-all-day-row-padding-bottom: 12px !default;
241
+ $schedule-bigger-dialog-row-container-padding-bottom: 12px !default;
242
+ $schedule-bigger-dialog-all-day-row-padding-top: 10px !default;
243
+ $schedule-device-dialog-all-day-row-padding-top: 20px !default;
244
+ $schedule-all-day-section-hover-color: $schedule-tbar-default-icon-color !default;
245
+
246
+ $schedule-tree-bg-color: $content-bg-color-alt1 !default;
247
+ $schedule-tree-font-color: $schedule-primary-content-font-color !default;
248
+ $schedule-tree-content-color: $content-text-color-alt2;
249
+ $schedule-popup-overlay-bg-color: $overlay-bg-color !default;
250
+
251
+ $schedule-val-error-color: $danger-bg-color !default;
252
+ $schedule-val-error-bg-color: $danger-light !default;
253
+
254
+ $schedule-block-appointment-bg-color: $content-bg-color-alt2 !default;
255
+ $schedule-block-appointment-font-color: $content-text-color !default;
256
+
257
+ $schedule-resource-color-margin-top: 10px !default;
258
+ $schedule-bigger-resource-color-margin-top: 10px !default;
259
+ $schedule-resource-color-size: 14px !default;
260
+ $schedule-bigger-resource-color-size: 16px !default;
261
+ $schedule-resource-tree-text-content-padding: 0 0 0 12px !default;
262
+
263
+ $schedule-tip-content-padding: 3px 6px !default;
264
+ $schedule-time-cells-border-bottom-color: none !default;
265
+ $schedule-current-day-font-weight: $font-weight-medium !default;
266
+ $schedule-selected-cell-hover-font-color: $schedule-hover-font-color !default;
267
+ $schedule-work-cell-hover-color: $schedule-hover-font-color !default;
268
+ $schedule-current-date-header-font-color: $schedule-active-color !default;
269
+ $schedule-selected-date-header-cell-font-color: none !default;
270
+ $schedule-time-cells-bg-color: $schedule-tbar-default-bg !default;
271
+ $schedule-agenda-subject-wrap-margin-bottom: 4px !default;
272
+ $schedule-bigger-tbar-btn-font-size: $text-2xl !default;
273
+ $schedule-more-event-close-icon-font-size: $text-sm !default;
274
+ $schedule-tbar-btn-icn-right-bgr-padding-top: 3px !default;
275
+ $schedule-following-events-dlg-padding: 8px 18px !default;
276
+ $schedule-header-icon-wrapper-bg-color: $schedule-content-bg-color !default;
277
+ $schedule-bgr-date-time-icon-padding-right: 16px !default;
278
+ $schedule-bgr-more-event-close-icon-padding: 1px !default;
279
+ $schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
280
+
281
+ @mixin tbar-btn-animation {
282
+ content: '';
283
+ }
284
+
285
+ @mixin tbar-btn-animation-after {
286
+ content: '';
287
+ }
@@ -37,7 +37,7 @@ $schedule-header-cells-width: 36px !default;
37
37
  $schedule-header-cells-padding: 8px !default;
38
38
  $schedule-month-header-cells-nrml-height: 35px !default;
39
39
  $schedule-month-header-cells-bgr-height: 35px !default;
40
- $schedule-month-header-cells-padding: 8px !default;
40
+ $schedule-month-header-cells-padding: 3px !default;
41
41
  $schedule-allday-cells-height: 0 !default;
42
42
  $schedule-work-cells-height: 50px !default;
43
43
  $schedule-work-cells-width: 36px !default;
@@ -216,7 +216,7 @@ $schedule-header-cells-height: 60px !default;
216
216
  $schedule-header-cells-width: 36px !default;
217
217
  $schedule-month-header-cells-nrml-height: 34px !default;
218
218
  $schedule-month-header-cells-bgr-height: 38px !default;
219
- $schedule-month-header-cells-padding: 8px !default;
219
+ $schedule-month-header-cells-padding: 3px !default;
220
220
  $schedule-header-date-line-height: 24px !default;
221
221
  $schedule-header-padding-top: 0 !default;
222
222
  $schedule-allday-cells-height: 0 !default;
@@ -215,7 +215,7 @@ $schedule-header-cells-height: 60px !default;
215
215
  $schedule-header-cells-width: 36px !default;
216
216
  $schedule-month-header-cells-nrml-height: 34px !default;
217
217
  $schedule-month-header-cells-bgr-height: 38px !default;
218
- $schedule-month-header-cells-padding: 8px !default;
218
+ $schedule-month-header-cells-padding: 3px !default;
219
219
  $schedule-allday-cells-height: 0 !default;
220
220
  $schedule-work-cells-height: 36px !default;
221
221
  $schedule-work-cells-width: 36px !default;
@@ -32,6 +32,7 @@
32
32
  }
33
33
 
34
34
  .e-toolbar-items {
35
+ height: $schedule-tbar-min-height;
35
36
 
36
37
  &.e-tbar-pos {
37
38
  height: $schedule-tbar-min-height;
@@ -975,6 +976,10 @@
975
976
  position: relative;
976
977
  }
977
978
 
979
+ .e-appointment-wrapper-hidden {
980
+ visibility: hidden;
981
+ }
982
+
978
983
  .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
979
984
  cursor: default;
980
985
  }
@@ -2725,7 +2730,7 @@
2725
2730
  .e-toolbar-item {
2726
2731
  min-height: $schedule-tbar-bgr-items-size;
2727
2732
 
2728
- &:not(.e-separator) {
2733
+ &:not(.e-separator):not(.e-spacer) {
2729
2734
  min-width: $schedule-tbar-bgr-item-size;
2730
2735
  }
2731
2736
 
@@ -223,7 +223,7 @@ $schedule-header-day-line-height: 20px !default;
223
223
  $schedule-header-day-padding-bottom: 4px !default;
224
224
  $schedule-month-header-cells-nrml-height: 34px !default;
225
225
  $schedule-month-header-cells-bgr-height: 38px !default;
226
- $schedule-month-header-cells-padding: 8px !default;
226
+ $schedule-month-header-cells-padding: 3px !default;
227
227
  $schedule-allday-cells-height: 0 !default;
228
228
  $schedule-work-cells-height: 36px !default;
229
229
  $schedule-work-cells-width: 36px !default;
@@ -35,7 +35,7 @@ $schedule-header-cells-height: 60px !default;
35
35
  $schedule-header-cells-width: 36px !default;
36
36
  $schedule-month-header-cells-nrml-height: 34px !default;
37
37
  $schedule-month-header-cells-bgr-height: 38px !default;
38
- $schedule-month-header-cells-padding: 8px !default;
38
+ $schedule-month-header-cells-padding: 3px !default;
39
39
  $schedule-allday-cells-height: 0 !default;
40
40
  $schedule-work-cells-height: 36px !default;
41
41
  $schedule-work-cells-width: 36px !default;
@@ -138,6 +138,10 @@
138
138
  color: #fff;
139
139
  }
140
140
 
141
+ .e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
142
+ margin-top: -3.2em;
143
+ }
144
+
141
145
  /*! recurrence editor theme wise definitions*/ /*! Schedule component's bootstrap theme definitions and variables */
142
146
  .e-schedule .e-schedule-toolbar .e-icon-prev::before {
143
147
  content: "\e990";
@@ -323,6 +327,9 @@
323
327
  font-size: 14px;
324
328
  text-transform: initial;
325
329
  }
330
+ .e-schedule .e-schedule-toolbar .e-toolbar-items {
331
+ height: 43px;
332
+ }
326
333
  .e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
327
334
  height: 43px;
328
335
  min-height: 43px;
@@ -1031,6 +1038,9 @@
1031
1038
  padding: 0;
1032
1039
  position: relative;
1033
1040
  }
1041
+ .e-schedule .e-vertical-view .e-appointment-wrapper-hidden {
1042
+ visibility: hidden;
1043
+ }
1034
1044
  .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
1035
1045
  cursor: default;
1036
1046
  }
@@ -2485,8 +2495,8 @@
2485
2495
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
2486
2496
  min-height: 56px;
2487
2497
  }
2488
- .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
2489
- .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
2498
+ .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
2499
+ .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
2490
2500
  min-width: 34px;
2491
2501
  }
2492
2502
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
@@ -133,6 +133,10 @@
133
133
  width: 40px;
134
134
  }
135
135
 
136
+ .e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
137
+ margin-top: -3.2em;
138
+ }
139
+
136
140
  /*! recurrence editor theme wise definitions*/ /*! Schedule component's bootstrap theme definitions and variables */
137
141
  .e-schedule .e-schedule-toolbar .e-icon-prev::before {
138
142
  content: "\e990";
@@ -318,6 +322,9 @@
318
322
  font-size: 14px;
319
323
  text-transform: initial;
320
324
  }
325
+ .e-schedule .e-schedule-toolbar .e-toolbar-items {
326
+ height: 43px;
327
+ }
321
328
  .e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
322
329
  height: 43px;
323
330
  min-height: 43px;
@@ -1026,6 +1033,9 @@
1026
1033
  padding: 0;
1027
1034
  position: relative;
1028
1035
  }
1036
+ .e-schedule .e-vertical-view .e-appointment-wrapper-hidden {
1037
+ visibility: hidden;
1038
+ }
1029
1039
  .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
1030
1040
  cursor: default;
1031
1041
  }
@@ -2480,8 +2490,8 @@
2480
2490
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
2481
2491
  min-height: 56px;
2482
2492
  }
2483
- .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
2484
- .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
2493
+ .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
2494
+ .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
2485
2495
  min-width: 34px;
2486
2496
  }
2487
2497
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
@@ -427,6 +427,9 @@
427
427
  font-size: 14px;
428
428
  text-transform: initial;
429
429
  }
430
+ .e-schedule .e-schedule-toolbar .e-toolbar-items {
431
+ height: 46px;
432
+ }
430
433
  .e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
431
434
  height: 46px;
432
435
  min-height: 46px;
@@ -1135,6 +1138,9 @@
1135
1138
  padding: 0;
1136
1139
  position: relative;
1137
1140
  }
1141
+ .e-schedule .e-vertical-view .e-appointment-wrapper-hidden {
1142
+ visibility: hidden;
1143
+ }
1138
1144
  .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
1139
1145
  cursor: default;
1140
1146
  }
@@ -1375,7 +1381,7 @@
1375
1381
  cursor: default;
1376
1382
  font-weight: normal;
1377
1383
  height: 35px;
1378
- padding: 8px;
1384
+ padding: 3px;
1379
1385
  }
1380
1386
  .e-schedule .e-month-view .e-content-table {
1381
1387
  height: 100%;
@@ -2589,8 +2595,8 @@
2589
2595
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
2590
2596
  min-height: 54px;
2591
2597
  }
2592
- .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
2593
- .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
2598
+ .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
2599
+ .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
2594
2600
  min-width: 34px;
2595
2601
  }
2596
2602
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
@@ -372,6 +372,9 @@
372
372
  font-size: 14px;
373
373
  text-transform: none;
374
374
  }
375
+ .e-schedule .e-schedule-toolbar .e-toolbar-items {
376
+ height: 38px;
377
+ }
375
378
  .e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
376
379
  height: 38px;
377
380
  min-height: 38px;
@@ -1080,6 +1083,9 @@
1080
1083
  padding: 0;
1081
1084
  position: relative;
1082
1085
  }
1086
+ .e-schedule .e-vertical-view .e-appointment-wrapper-hidden {
1087
+ visibility: hidden;
1088
+ }
1083
1089
  .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
1084
1090
  cursor: default;
1085
1091
  }
@@ -1320,7 +1326,7 @@
1320
1326
  cursor: default;
1321
1327
  font-weight: normal;
1322
1328
  height: 34px;
1323
- padding: 8px;
1329
+ padding: 3px;
1324
1330
  }
1325
1331
  .e-schedule .e-month-view .e-content-table {
1326
1332
  height: 100%;
@@ -2534,8 +2540,8 @@
2534
2540
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
2535
2541
  min-height: 54px;
2536
2542
  }
2537
- .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
2538
- .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
2543
+ .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
2544
+ .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
2539
2545
  min-width: 34px;
2540
2546
  }
2541
2547
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
@@ -372,6 +372,9 @@
372
372
  font-size: 14px;
373
373
  text-transform: none;
374
374
  }
375
+ .e-schedule .e-schedule-toolbar .e-toolbar-items {
376
+ height: 38px;
377
+ }
375
378
  .e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
376
379
  height: 38px;
377
380
  min-height: 38px;
@@ -1080,6 +1083,9 @@
1080
1083
  padding: 0;
1081
1084
  position: relative;
1082
1085
  }
1086
+ .e-schedule .e-vertical-view .e-appointment-wrapper-hidden {
1087
+ visibility: hidden;
1088
+ }
1083
1089
  .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
1084
1090
  cursor: default;
1085
1091
  }
@@ -1320,7 +1326,7 @@
1320
1326
  cursor: default;
1321
1327
  font-weight: normal;
1322
1328
  height: 34px;
1323
- padding: 8px;
1329
+ padding: 3px;
1324
1330
  }
1325
1331
  .e-schedule .e-month-view .e-content-table {
1326
1332
  height: 100%;
@@ -2534,8 +2540,8 @@
2534
2540
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
2535
2541
  min-height: 54px;
2536
2542
  }
2537
- .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
2538
- .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
2543
+ .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
2544
+ .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
2539
2545
  min-width: 34px;
2540
2546
  }
2541
2547
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
@@ -290,6 +290,9 @@
290
290
  font-size: 14px;
291
291
  text-transform: initial;
292
292
  }
293
+ .e-schedule .e-schedule-toolbar .e-toolbar-items {
294
+ height: 43px;
295
+ }
293
296
  .e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
294
297
  height: 43px;
295
298
  min-height: 43px;
@@ -998,6 +1001,9 @@
998
1001
  padding: 0;
999
1002
  position: relative;
1000
1003
  }
1004
+ .e-schedule .e-vertical-view .e-appointment-wrapper-hidden {
1005
+ visibility: hidden;
1006
+ }
1001
1007
  .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
1002
1008
  cursor: default;
1003
1009
  }
@@ -2452,8 +2458,8 @@
2452
2458
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
2453
2459
  min-height: 56px;
2454
2460
  }
2455
- .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
2456
- .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
2461
+ .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
2462
+ .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
2457
2463
  min-width: 34px;
2458
2464
  }
2459
2465
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
@@ -280,6 +280,9 @@
280
280
  font-size: 14px;
281
281
  text-transform: initial;
282
282
  }
283
+ .e-schedule .e-schedule-toolbar .e-toolbar-items {
284
+ height: 43px;
285
+ }
283
286
  .e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
284
287
  height: 43px;
285
288
  min-height: 43px;
@@ -988,6 +991,9 @@
988
991
  padding: 0;
989
992
  position: relative;
990
993
  }
994
+ .e-schedule .e-vertical-view .e-appointment-wrapper-hidden {
995
+ visibility: hidden;
996
+ }
991
997
  .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
992
998
  cursor: default;
993
999
  }
@@ -2442,8 +2448,8 @@
2442
2448
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
2443
2449
  min-height: 56px;
2444
2450
  }
2445
- .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
2446
- .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
2451
+ .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
2452
+ .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
2447
2453
  min-width: 34px;
2448
2454
  }
2449
2455
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
@@ -164,6 +164,11 @@
164
164
  border-left-width: 0;
165
165
  }
166
166
 
167
+ .e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon,
168
+ .e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon {
169
+ margin-top: -1.6em;
170
+ }
171
+
167
172
  /*! Schedule component's bootstrap5 theme definitions and variables */
168
173
  .e-schedule .e-schedule-toolbar .e-icon-prev::before {
169
174
  content: "\e765";
@@ -349,6 +354,9 @@
349
354
  font-size: 14px;
350
355
  text-transform: none;
351
356
  }
357
+ .e-schedule .e-schedule-toolbar .e-toolbar-items {
358
+ height: 38px;
359
+ }
352
360
  .e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
353
361
  height: 38px;
354
362
  min-height: 38px;
@@ -1057,6 +1065,9 @@
1057
1065
  padding: 0;
1058
1066
  position: relative;
1059
1067
  }
1068
+ .e-schedule .e-vertical-view .e-appointment-wrapper-hidden {
1069
+ visibility: hidden;
1070
+ }
1060
1071
  .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
1061
1072
  cursor: default;
1062
1073
  }
@@ -2511,8 +2522,8 @@
2511
2522
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
2512
2523
  min-height: 54px;
2513
2524
  }
2514
- .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
2515
- .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
2525
+ .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
2526
+ .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
2516
2527
  min-width: 34px;
2517
2528
  }
2518
2529
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,