@syncfusion/ej2-angular-schedule 20.4.43-ngcc → 20.4.43

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 (126) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/index.mjs +11 -0
  3. package/esm2020/src/recurrence-editor/recurrenceeditor-all.module.mjs +23 -0
  4. package/esm2020/src/recurrence-editor/recurrenceeditor.component.mjs +59 -0
  5. package/esm2020/src/recurrence-editor/recurrenceeditor.module.mjs +25 -0
  6. package/esm2020/src/schedule/headerrows.directive.mjs +66 -0
  7. package/esm2020/src/schedule/resources.directive.mjs +58 -0
  8. package/esm2020/src/schedule/schedule-all.module.mjs +74 -0
  9. package/esm2020/src/schedule/schedule.component.mjs +289 -0
  10. package/esm2020/src/schedule/schedule.module.mjs +52 -0
  11. package/esm2020/src/schedule/views.directive.mjs +132 -0
  12. package/esm2020/syncfusion-ej2-angular-schedule.mjs +5 -0
  13. package/fesm2015/syncfusion-ej2-angular-schedule.mjs +745 -0
  14. package/fesm2015/syncfusion-ej2-angular-schedule.mjs.map +1 -0
  15. package/fesm2020/syncfusion-ej2-angular-schedule.mjs +745 -0
  16. package/fesm2020/syncfusion-ej2-angular-schedule.mjs.map +1 -0
  17. package/package.json +26 -12
  18. package/src/recurrence-editor/recurrenceeditor-all.module.d.ts +6 -0
  19. package/src/recurrence-editor/recurrenceeditor.component.d.ts +3 -0
  20. package/src/recurrence-editor/recurrenceeditor.module.d.ts +6 -0
  21. package/src/schedule/headerrows.directive.d.ts +5 -0
  22. package/src/schedule/resources.directive.d.ts +5 -0
  23. package/src/schedule/schedule-all.module.d.ts +6 -0
  24. package/src/schedule/schedule.component.d.ts +3 -0
  25. package/src/schedule/schedule.module.d.ts +9 -0
  26. package/src/schedule/views.directive.d.ts +5 -0
  27. package/styles/recurrence-editor/_all.scss +2 -0
  28. package/styles/recurrence-editor/_bootstrap-dark-definition.scss +13 -0
  29. package/styles/recurrence-editor/_bootstrap-definition.scss +13 -0
  30. package/styles/recurrence-editor/_bootstrap4-definition.scss +13 -0
  31. package/styles/recurrence-editor/_bootstrap5-dark-definition.scss +1 -0
  32. package/styles/recurrence-editor/_bootstrap5-definition.scss +13 -0
  33. package/styles/recurrence-editor/_fabric-dark-definition.scss +13 -0
  34. package/styles/recurrence-editor/_fabric-definition.scss +13 -0
  35. package/styles/recurrence-editor/_fluent-dark-definition.scss +1 -0
  36. package/styles/recurrence-editor/_fluent-definition.scss +13 -0
  37. package/styles/recurrence-editor/_fusionnew-definition.scss +13 -0
  38. package/styles/recurrence-editor/_highcontrast-definition.scss +13 -0
  39. package/styles/recurrence-editor/_highcontrast-light-definition.scss +13 -0
  40. package/styles/recurrence-editor/_layout.scss +548 -0
  41. package/styles/recurrence-editor/_material-dark-definition.scss +13 -0
  42. package/styles/recurrence-editor/_material-definition.scss +13 -0
  43. package/styles/recurrence-editor/_material3-definition.scss +13 -0
  44. package/styles/recurrence-editor/_tailwind-dark-definition.scss +1 -0
  45. package/styles/recurrence-editor/_tailwind-definition.scss +13 -0
  46. package/styles/recurrence-editor/_theme.scss +1 -0
  47. package/styles/recurrence-editor/bootstrap-dark.scss +8 -1
  48. package/styles/recurrence-editor/bootstrap.scss +8 -1
  49. package/styles/recurrence-editor/bootstrap4.scss +8 -1
  50. package/styles/recurrence-editor/bootstrap5-dark.scss +8 -1
  51. package/styles/recurrence-editor/bootstrap5.scss +8 -1
  52. package/styles/recurrence-editor/fabric-dark.scss +8 -1
  53. package/styles/recurrence-editor/fabric.scss +8 -1
  54. package/styles/recurrence-editor/fluent-dark.scss +8 -1
  55. package/styles/recurrence-editor/fluent.scss +8 -1
  56. package/styles/recurrence-editor/highcontrast-light.scss +8 -1
  57. package/styles/recurrence-editor/highcontrast.scss +8 -1
  58. package/styles/recurrence-editor/material-dark.scss +8 -1
  59. package/styles/recurrence-editor/material.scss +8 -1
  60. package/styles/recurrence-editor/tailwind-dark.scss +8 -1
  61. package/styles/recurrence-editor/tailwind.scss +8 -1
  62. package/styles/schedule/_all.scss +2 -0
  63. package/styles/schedule/_bootstrap-dark-definition.scss +272 -0
  64. package/styles/schedule/_bootstrap-definition.scss +272 -0
  65. package/styles/schedule/_bootstrap4-definition.scss +275 -0
  66. package/styles/schedule/_bootstrap5-dark-definition.scss +1 -0
  67. package/styles/schedule/_bootstrap5-definition.scss +282 -0
  68. package/styles/schedule/_fabric-dark-definition.scss +271 -0
  69. package/styles/schedule/_fabric-definition.scss +272 -0
  70. package/styles/schedule/_fluent-dark-definition.scss +1 -0
  71. package/styles/schedule/_fluent-definition.scss +277 -0
  72. package/styles/schedule/_fusionnew-definition.scss +281 -0
  73. package/styles/schedule/_highcontrast-definition.scss +273 -0
  74. package/styles/schedule/_highcontrast-light-definition.scss +273 -0
  75. package/styles/schedule/_layout.scss +4100 -0
  76. package/styles/schedule/_material-dark-definition.scss +272 -0
  77. package/styles/schedule/_material-definition.scss +272 -0
  78. package/styles/schedule/_material3-definition.scss +283 -0
  79. package/styles/schedule/_tailwind-dark-definition.scss +1 -0
  80. package/styles/schedule/_tailwind-definition.scss +274 -0
  81. package/styles/schedule/_theme.scss +545 -0
  82. package/styles/schedule/bootstrap-dark.scss +16 -1
  83. package/styles/schedule/bootstrap.scss +16 -1
  84. package/styles/schedule/bootstrap4.scss +16 -1
  85. package/styles/schedule/bootstrap5-dark.scss +15 -1
  86. package/styles/schedule/bootstrap5.scss +16 -1
  87. package/styles/schedule/fabric-dark.scss +16 -1
  88. package/styles/schedule/fabric.scss +16 -1
  89. package/styles/schedule/fluent-dark.scss +15 -1
  90. package/styles/schedule/fluent.scss +16 -1
  91. package/styles/schedule/highcontrast-light.scss +16 -1
  92. package/styles/schedule/highcontrast.scss +16 -1
  93. package/styles/schedule/icons/_bootstrap-dark.scss +231 -0
  94. package/styles/schedule/icons/_bootstrap.scss +231 -0
  95. package/styles/schedule/icons/_bootstrap4.scss +231 -0
  96. package/styles/schedule/icons/_bootstrap5-dark.scss +1 -0
  97. package/styles/schedule/icons/_bootstrap5.scss +231 -0
  98. package/styles/schedule/icons/_fabric-dark.scss +231 -0
  99. package/styles/schedule/icons/_fabric.scss +231 -0
  100. package/styles/schedule/icons/_fluent-dark.scss +1 -0
  101. package/styles/schedule/icons/_fluent.scss +231 -0
  102. package/styles/schedule/icons/_fusionnew.scss +231 -0
  103. package/styles/schedule/icons/_highcontrast-light.scss +231 -0
  104. package/styles/schedule/icons/_highcontrast.scss +231 -0
  105. package/styles/schedule/icons/_material-dark.scss +231 -0
  106. package/styles/schedule/icons/_material.scss +231 -0
  107. package/styles/schedule/icons/_material3.scss +231 -0
  108. package/styles/schedule/icons/_tailwind-dark.scss +1 -0
  109. package/styles/schedule/icons/_tailwind.scss +231 -0
  110. package/styles/schedule/material-dark.scss +16 -1
  111. package/styles/schedule/material.scss +16 -1
  112. package/styles/schedule/tailwind-dark.scss +15 -1
  113. package/styles/schedule/tailwind.scss +16 -1
  114. package/syncfusion-ej2-angular-schedule.d.ts +5 -0
  115. package/@syncfusion/ej2-angular-schedule.es5.js +0 -850
  116. package/@syncfusion/ej2-angular-schedule.es5.js.map +0 -1
  117. package/@syncfusion/ej2-angular-schedule.js +0 -798
  118. package/@syncfusion/ej2-angular-schedule.js.map +0 -1
  119. package/CHANGELOG.md +0 -1608
  120. package/dist/ej2-angular-schedule.umd.js +0 -990
  121. package/dist/ej2-angular-schedule.umd.js.map +0 -1
  122. package/dist/ej2-angular-schedule.umd.min.js +0 -11
  123. package/dist/ej2-angular-schedule.umd.min.js.map +0 -1
  124. package/ej2-angular-schedule.d.ts +0 -6
  125. package/ej2-angular-schedule.metadata.json +0 -1
  126. package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,545 @@
1
+ @include export-module('schedule-theme') {
2
+
3
+ /*! schedule component theme */
4
+ .e-schedule {
5
+ background-color: $schedule-header-bg-color;
6
+ border: $border-size $border-type $schedule-content-border-color;
7
+
8
+ .e-date-header-wrap {
9
+ border-color: $schedule-header-border-color;
10
+ border-style: $border-type;
11
+ border-width: 0;
12
+ position: relative;
13
+ }
14
+
15
+ .e-header-calendar {
16
+ background-color: $schedule-calendar-background;
17
+ box-shadow: $schedule-calendar-shadow;
18
+ }
19
+
20
+ .e-vertical-view {
21
+ .e-date-header-wrap table tbody td:first-child,
22
+ .e-content-wrap table td:first-child {
23
+ border-left-width: 0;
24
+ }
25
+
26
+ .e-date-header-wrap {
27
+ .e-all-day-cells {
28
+ background-color: $schedule-header-bg-color;
29
+
30
+ &:hover {
31
+ background: $schedule-hover-bg-color;
32
+ }
33
+ }
34
+ }
35
+
36
+ .e-left-indent-wrap table tbody td {
37
+ background-color: $schedule-header-bg-color;
38
+ border-color: $schedule-header-border-color;
39
+ border-style: $border-type;
40
+ border-width: 0 1px 1px 0;
41
+ color: $schedule-header-font-color;
42
+
43
+ &.e-header-cells {
44
+ border-bottom-width: 0;
45
+
46
+ &.e-week-number {
47
+ color: $schedule-secondary-content-font-color;
48
+ font-size: $schedule-date-header-wrap-nrml-font-size;
49
+ padding-top: 10px;
50
+ text-align: center;
51
+ vertical-align: top;
52
+ }
53
+ }
54
+
55
+ &.e-resource-cells {
56
+ border-bottom-color: transparent;
57
+ }
58
+ }
59
+
60
+ .e-date-header-wrap table tbody td {
61
+ background-color: $schedule-header-bg-color;
62
+ border-color: $schedule-header-border-color;
63
+ border-style: $border-type;
64
+ border-width: $schedule-vertical-work-cells-border;
65
+ color: $schedule-header-font-color;
66
+ text-align: left;
67
+
68
+ &.e-header-cells {
69
+ border-bottom-width: 0;
70
+ }
71
+ }
72
+
73
+ .e-time-cells-wrap table td {
74
+ background-color: $schedule-time-cells-bg-color;
75
+ border-color: $schedule-content-border-color;
76
+ border-style: $border-type;
77
+ border-width: 0 1px 1px 0;
78
+ color: $schedule-time-cells-font-color;
79
+ }
80
+
81
+ .e-time-cells-wrap table td {
82
+ border-bottom-color: transparent;
83
+ }
84
+
85
+ .e-time-cells-wrap .e-time-cells {
86
+ border-bottom-color: $schedule-time-cells-border-bottom-color;
87
+ }
88
+
89
+ .e-header-cells {
90
+ background-color: $schedule-header-bg-color;
91
+
92
+ &.e-current-day {
93
+ color: $schedule-active-font-color;
94
+ font-weight: $schedule-current-day-font-weight;
95
+ }
96
+ }
97
+
98
+ .e-work-cells {
99
+ background-color: $schedule-work-cells-bg-color;
100
+ border-color: $schedule-content-border-color;
101
+ border-style: $border-type;
102
+ border-width: $schedule-vertical-work-cells-border;
103
+ padding: 0;
104
+
105
+ &:hover {
106
+ background: $schedule-hover-bg-color;
107
+ color: $schedule-hover-font-color;
108
+ }
109
+ }
110
+
111
+ .e-alternate-cells {
112
+ border-bottom-style: $schedule-alternate-cell-border;
113
+ }
114
+
115
+ .e-work-hours {
116
+ background-color: $schedule-workhour-bg-color;
117
+ }
118
+
119
+ .e-all-day-cells {
120
+ background-color: $schedule-header-bg-color;
121
+
122
+ &.e-current-day {
123
+ color: $schedule-active-font-color;
124
+ }
125
+
126
+ &.e-selected-cell {
127
+ background-color: $schedule-select-bg-color;
128
+ color: $schedule-hover-font-color;
129
+
130
+ &:hover {
131
+ background-color: $schedule-select-bg-color;
132
+ color: $schedule-selected-cell-hover-font-color;
133
+ }
134
+ }
135
+ }
136
+
137
+ .e-selected-cell {
138
+ background-color: $schedule-select-bg-color;
139
+ color: $schedule-hover-font-color;
140
+
141
+ &:hover {
142
+ background-color: $schedule-select-bg-color;
143
+ color: $schedule-selected-cell-hover-font-color;
144
+ }
145
+ }
146
+
147
+ .e-clone-time-indicator,
148
+ .e-current-time {
149
+ color: $schedule-active-font-color;
150
+ }
151
+
152
+ .e-current-timeline {
153
+ border-top: 1px $border-type $schedule-active-border-color;
154
+ }
155
+
156
+ .e-previous-timeline {
157
+ border-top: 1px dotted $schedule-active-border-color;
158
+ }
159
+
160
+ &.e-by-date {
161
+ .e-date-header-wrap table tbody td {
162
+ &.e-header-cells {
163
+ border-bottom-width: 1px;
164
+ }
165
+ }
166
+ }
167
+ }
168
+
169
+ .e-month-view {
170
+ .e-date-header-wrap table td:first-child,
171
+ .e-content-wrap table td:first-child {
172
+ border-left-width: 0;
173
+ }
174
+ }
175
+
176
+ .e-month-view,
177
+ .e-month-agenda-view {
178
+ .e-date-header-wrap table td {
179
+ background-color: $schedule-header-bg-color;
180
+ border-color: $schedule-header-border-color;
181
+ border-style: $border-type;
182
+ border-width: $schedule-month-work-cells-border;
183
+ color: $schedule-header-font-color;
184
+ font-size: $schedule-month-date-header-cell-font-size;
185
+ text-align: $schedule-month-date-header-cell-text-align;
186
+ text-transform: $schedule-month-date-header-cell-text-transform;
187
+
188
+ &.e-current-day {
189
+ color: $schedule-active-font-color;
190
+ font-weight: $schedule-current-day-font-weight;
191
+ }
192
+ }
193
+
194
+ .e-work-cells {
195
+ background-color: $schedule-work-cells-bg-color;
196
+ border-color: $schedule-content-border-color;
197
+ border-style: $border-type;
198
+ border-width: $schedule-month-work-cells-border;
199
+ color: $schedule-primary-content-font-color;
200
+ padding: 0;
201
+
202
+ &:hover {
203
+ background: $schedule-hover-bg-color;
204
+ color: $schedule-work-cell-hover-color;
205
+ }
206
+ }
207
+
208
+ .e-work-days {
209
+ background-color: $schedule-workhour-bg-color;
210
+ }
211
+
212
+ .e-other-month {
213
+ color: $schedule-secondary-content-font-color;
214
+ }
215
+
216
+ .e-current-date .e-date-header {
217
+ background-color: $schedule-current-date-bg-color;
218
+ border-radius: 50%;
219
+ color: $schedule-current-date-header-font-color;
220
+ width: 20px;
221
+ }
222
+
223
+ .e-selected-cell {
224
+ background-color: $schedule-select-bg-color;
225
+ color: $schedule-select-font-color;
226
+
227
+ .e-date-header {
228
+ color: $schedule-selected-date-header-cell-font-color;
229
+ }
230
+
231
+ .e-more-indicator {
232
+ color: $schedule-select-font-color;
233
+ }
234
+
235
+ &:hover {
236
+ background-color: $schedule-select-bg-color;
237
+ }
238
+ }
239
+ }
240
+
241
+ .e-month-agenda-view {
242
+
243
+ .e-content-wrap .e-table-container {
244
+ overflow: auto;
245
+ }
246
+
247
+ .e-date-header-wrap table td {
248
+ border-width: $schedule-month-agenda-header-cells-border;
249
+ text-align: center;
250
+ }
251
+
252
+ .e-work-cells {
253
+ border-width: $schedule-month-agenda-work-cells-border;
254
+ }
255
+
256
+ .e-current-date .e-date-header {
257
+ width: 24px;
258
+ }
259
+ }
260
+
261
+ .e-timeline-view,
262
+ .e-timeline-month-view {
263
+ .e-date-header-wrap table td:first-child,
264
+ .e-content-wrap table td:first-child {
265
+ border-left-width: 0;
266
+ }
267
+
268
+ .e-content-wrap table tr:last-child td {
269
+ border-bottom-width: 0;
270
+ }
271
+
272
+ .e-date-header-wrap table td {
273
+ background-color: $schedule-header-bg-color;
274
+ border-color: $schedule-header-border-color;
275
+ border-style: $border-type;
276
+ border-width: $schedule-timeline-work-cells-border;
277
+ color: $schedule-header-font-color;
278
+
279
+ &.e-current-day {
280
+ color: $schedule-active-font-color;
281
+ font-weight: $schedule-current-day-font-weight;
282
+ }
283
+ }
284
+
285
+ .e-work-cells {
286
+ background-color: $schedule-work-cells-bg-color;
287
+ border-color: $schedule-content-border-color;
288
+ border-style: $border-type;
289
+ border-width: $schedule-timeline-work-cells-border;
290
+ color: $schedule-primary-content-font-color;
291
+ padding: 0;
292
+
293
+ &:hover:not(.e-resource-group-cells) {
294
+ background: $schedule-hover-bg-color;
295
+ color: $schedule-hover-font-color;
296
+ }
297
+ }
298
+
299
+ &.e-virtual-mask .e-work-cells:hover {
300
+ background-color: $schedule-disable-dates-color;
301
+ }
302
+
303
+ .e-work-days {
304
+ background-color: $schedule-workhour-bg-color;
305
+ }
306
+
307
+ .e-resource-group-cells {
308
+ background-color: $schedule-work-cells-bg-color;
309
+ }
310
+
311
+ .e-selected-cell {
312
+ background-color: $schedule-select-bg-color;
313
+ color: $schedule-select-font-color;
314
+
315
+ &:hover:not(.e-resource-group-cells) {
316
+ background-color: $schedule-select-bg-color;
317
+ }
318
+ }
319
+ }
320
+
321
+ .e-timeline-view {
322
+ .e-work-hours {
323
+ background-color: $schedule-workhour-bg-color;
324
+ }
325
+
326
+ .e-resource-group-cells {
327
+ background-color: $schedule-work-cells-bg-color;
328
+ }
329
+
330
+ .e-selected-cell {
331
+ background-color: $schedule-select-bg-color;
332
+ color: $schedule-hover-font-color;
333
+
334
+ &:hover {
335
+ background-color: $schedule-select-bg-color;
336
+ }
337
+ }
338
+
339
+ .e-alternate-cells {
340
+ border-left-style: $schedule-alternate-cell-border;
341
+ }
342
+
343
+ .e-header-row .e-time-cells {
344
+ border-left-width: 0;
345
+ }
346
+
347
+ .e-clone-time-indicator,
348
+ .e-current-time {
349
+ color: $schedule-active-font-color;
350
+ font-size: $schedule-current-time-nrml-font-size;
351
+ }
352
+
353
+ .e-current-timeline {
354
+ border-left: 1px $border-type $schedule-active-border-color;
355
+ }
356
+ }
357
+
358
+ .e-timeline-year-view {
359
+ .e-work-cells {
360
+ background-color: $schedule-work-cells-bg-color;
361
+ border-color: $schedule-content-border-color;
362
+ border-style: $border-type;
363
+ border-width: 0 $border-size $border-size 0;
364
+ color: $schedule-primary-content-font-color;
365
+ padding: 0;
366
+
367
+ &:hover:not(.e-other-month) {
368
+ background: $schedule-hover-bg-color;
369
+ color: $schedule-hover-font-color;
370
+ }
371
+
372
+ &.e-work-days {
373
+ background-color: $schedule-workhour-bg-color;
374
+ }
375
+
376
+ &.e-other-month {
377
+ color: $schedule-secondary-content-font-color;
378
+ }
379
+
380
+ &.e-current-day .e-date-header {
381
+ background-color: $schedule-current-date-bg-color;
382
+ border-radius: 50%;
383
+ color: $schedule-current-day-active-color;
384
+ margin: 2px;
385
+ width: 20px;
386
+ }
387
+
388
+ &.e-selected-cell {
389
+ background-color: $schedule-select-bg-color;
390
+ color: $schedule-select-font-color;
391
+
392
+ .e-date-header {
393
+ color: $schedule-select-font-color;
394
+ }
395
+
396
+ .e-more-indicator {
397
+ color: $schedule-select-font-color;
398
+ }
399
+
400
+ &:hover {
401
+ background-color: $schedule-select-bg-color;
402
+ }
403
+ }
404
+
405
+ &.e-disable-dates {
406
+ background-color: $schedule-disable-dates-color;
407
+
408
+ .e-date-header {
409
+ cursor: default;
410
+ opacity: .35;
411
+
412
+ &:hover {
413
+ text-decoration: none;
414
+ }
415
+ }
416
+
417
+ &:hover {
418
+ background-color: $schedule-disable-dates-color;
419
+ }
420
+ }
421
+ }
422
+
423
+ &.e-virtual-mask .e-work-cells {
424
+ background-color: $schedule-disable-dates-color;
425
+ box-shadow: inset 0 0 0 8px $schedule-work-cells-bg-color;
426
+
427
+ &:hover {
428
+ background-color: $schedule-disable-dates-color;
429
+ }
430
+ }
431
+ }
432
+
433
+ #{if(&, '&', '*')}.e-rtl {
434
+ .e-vertical-view {
435
+ .e-date-header-wrap table tbody td:first-child,
436
+ .e-content-wrap table td:first-child {
437
+ border-right-width: 0;
438
+ }
439
+
440
+ .e-date-header-wrap table tbody td {
441
+ text-align: right;
442
+ }
443
+
444
+ .e-date-header-wrap table tbody td,
445
+ .e-work-cells {
446
+ border-width: $schedule-rtl-vertical-work-cells-border;
447
+ }
448
+
449
+ .e-left-indent-wrap .e-header-cells,
450
+ .e-date-header-wrap .e-header-cells {
451
+ border-bottom-width: 0;
452
+ }
453
+
454
+ .e-left-indent-wrap table tbody td,
455
+ .e-time-cells-wrap table tbody td {
456
+ border-width: 0 0 1px 1px;
457
+ }
458
+ }
459
+
460
+ .e-month-view {
461
+ .e-date-header-wrap table td:first-child,
462
+ .e-content-wrap table td:first-child {
463
+ border-right-width: 0;
464
+ }
465
+
466
+ .e-date-header-wrap table td {
467
+ text-align: right;
468
+ border-width: $schedule-rtl-month-work-cells-border;
469
+ }
470
+ }
471
+
472
+ .e-month-view,
473
+ .e-month-agenda-view {
474
+ .e-work-cells {
475
+ border-width: $schedule-rtl-month-work-cells-border;
476
+ }
477
+ }
478
+
479
+ .e-month-agenda-view {
480
+ .e-work-cells {
481
+ border-width: $schedule-rtl-month-agenda-work-cells-border;
482
+ }
483
+ }
484
+
485
+ .e-timeline-view,
486
+ .e-timeline-month-view {
487
+ .e-date-header-wrap table td:first-child,
488
+ .e-content-wrap table td:first-child {
489
+ border-right-width: 0;
490
+ }
491
+
492
+ .e-date-header-wrap table td:last-child,
493
+ .e-content-wrap table td:last-child {
494
+ border-left-width: 0;
495
+ }
496
+
497
+ .e-date-header-wrap table td,
498
+ .e-content-wrap table td {
499
+ border-width: $schedule-rtl-timeline-work-cells-border;
500
+ }
501
+ }
502
+
503
+ .e-timeline-view {
504
+ .e-alternate-cells {
505
+ border-right-style: $schedule-alternate-cell-border;
506
+ }
507
+
508
+ .e-header-row .e-time-cells {
509
+ border-right-width: 0;
510
+ }
511
+ }
512
+ }
513
+ }
514
+
515
+ .e-tooltip-wrap.e-schedule-error {
516
+ background-color: $schedule-val-error-bg-color;
517
+ border-color: $schedule-val-error-bg-color;
518
+ z-index: 1000;
519
+
520
+ .e-arrow-tip.e-tip-top {
521
+ left: 44%;
522
+ }
523
+
524
+ .e-arrow-tip-inner.e-tip-top,
525
+ .e-arrow-tip-outer.e-tip-top {
526
+ border-bottom: 8px solid $schedule-val-error-bg-color;
527
+ color: $schedule-val-error-bg-color;
528
+ }
529
+
530
+ .e-arrow-tip-outer.e-tip-bottom,
531
+ .e-arrow-tip-inner.e-tip-bottom {
532
+ border-top: 8px solid $schedule-val-error-bg-color;
533
+ color: $schedule-val-error-bg-color;
534
+ }
535
+
536
+ .e-tip-content {
537
+ padding: $schedule-tip-content-padding;
538
+ }
539
+
540
+ .e-tip-content,
541
+ .e-tip-content label {
542
+ color: $schedule-val-error-color;
543
+ }
544
+ }
545
+ }
@@ -1 +1,16 @@
1
- @import 'ej2-schedule/styles/schedule/bootstrap-dark.scss';
1
+ @import 'ej2-base/styles/bootstrap-dark-definition.scss';
2
+ @import 'ej2-navigations/styles/toolbar/bootstrap-dark-definition.scss';
3
+ @import 'ej2-navigations/styles/treeview/bootstrap-dark-definition.scss';
4
+ @import 'ej2-inputs/styles/input/bootstrap-dark-definition.scss';
5
+ @import 'ej2-inputs/styles/numerictextbox/bootstrap-dark-definition.scss';
6
+ @import 'ej2-calendars/styles/calendar/bootstrap-dark-definition.scss';
7
+ @import 'ej2-calendars/styles/datepicker/bootstrap-dark-definition.scss';
8
+ @import 'ej2-calendars/styles/datetimepicker/bootstrap-dark-definition.scss';
9
+ @import 'ej2-dropdowns/styles/drop-down-list/bootstrap-dark-definition.scss';
10
+ @import 'ej2-dropdowns/styles/multi-select/bootstrap-dark-definition.scss';
11
+ @import 'ej2-buttons/styles/button/bootstrap-dark-definition.scss';
12
+ @import 'ej2-buttons/styles/check-box/bootstrap-dark-definition.scss';
13
+ @import '../recurrence-editor/bootstrap-dark-definition.scss';
14
+ @import 'bootstrap-dark-definition.scss';
15
+ @import 'icons/bootstrap-dark.scss';
16
+ @import 'all.scss';
@@ -1 +1,16 @@
1
- @import 'ej2-schedule/styles/schedule/bootstrap.scss';
1
+ @import 'ej2-base/styles/bootstrap-definition.scss';
2
+ @import 'ej2-navigations/styles/toolbar/bootstrap-definition.scss';
3
+ @import 'ej2-navigations/styles/treeview/bootstrap-definition.scss';
4
+ @import 'ej2-inputs/styles/input/bootstrap-definition.scss';
5
+ @import 'ej2-inputs/styles/numerictextbox/bootstrap-definition.scss';
6
+ @import 'ej2-calendars/styles/calendar/bootstrap-definition.scss';
7
+ @import 'ej2-calendars/styles/datepicker/bootstrap-definition.scss';
8
+ @import 'ej2-calendars/styles/datetimepicker/bootstrap-definition.scss';
9
+ @import 'ej2-dropdowns/styles/drop-down-list/bootstrap-definition.scss';
10
+ @import 'ej2-dropdowns/styles/multi-select/bootstrap-definition.scss';
11
+ @import 'ej2-buttons/styles/button/bootstrap-definition.scss';
12
+ @import 'ej2-buttons/styles/check-box/bootstrap-definition.scss';
13
+ @import '../recurrence-editor/bootstrap-definition.scss';
14
+ @import 'bootstrap-definition.scss';
15
+ @import 'icons/bootstrap.scss';
16
+ @import 'all.scss';
@@ -1 +1,16 @@
1
- @import 'ej2-schedule/styles/schedule/bootstrap4.scss';
1
+ @import 'ej2-base/styles/bootstrap4-definition.scss';
2
+ @import 'ej2-navigations/styles/toolbar/bootstrap4-definition.scss';
3
+ @import 'ej2-navigations/styles/treeview/bootstrap4-definition.scss';
4
+ @import 'ej2-inputs/styles/input/bootstrap4-definition.scss';
5
+ @import 'ej2-inputs/styles/numerictextbox/bootstrap4-definition.scss';
6
+ @import 'ej2-calendars/styles/calendar/bootstrap4-definition.scss';
7
+ @import 'ej2-calendars/styles/datepicker/bootstrap4-definition.scss';
8
+ @import 'ej2-calendars/styles/datetimepicker/bootstrap4-definition.scss';
9
+ @import 'ej2-dropdowns/styles/drop-down-list/bootstrap4-definition.scss';
10
+ @import 'ej2-dropdowns/styles/multi-select/bootstrap4-definition.scss';
11
+ @import 'ej2-buttons/styles/button/bootstrap4-definition.scss';
12
+ @import 'ej2-buttons/styles/check-box/bootstrap4-definition.scss';
13
+ @import '../recurrence-editor/bootstrap4-definition.scss';
14
+ @import 'bootstrap4-definition.scss';
15
+ @import 'icons/bootstrap4.scss';
16
+ @import 'all.scss';
@@ -1 +1,15 @@
1
- @import 'ej2-schedule/styles/schedule/bootstrap5-dark.scss';
1
+ @import 'ej2-base/styles/bootstrap5-dark-definition.scss';
2
+ @import 'ej2-navigations/styles/toolbar/bootstrap5-dark-definition.scss';
3
+ @import 'ej2-navigations/styles/treeview/bootstrap5-dark-definition.scss';
4
+ @import 'ej2-inputs/styles/input/bootstrap5-dark-definition.scss';
5
+ @import 'ej2-inputs/styles/numerictextbox/bootstrap5-dark-definition.scss';
6
+ @import 'ej2-calendars/styles/calendar/bootstrap5-dark-definition.scss';
7
+ @import 'ej2-calendars/styles/datepicker/bootstrap5-dark-definition.scss';
8
+ @import 'ej2-calendars/styles/datetimepicker/bootstrap5-dark-definition.scss';
9
+ @import 'ej2-dropdowns/styles/drop-down-list/bootstrap5-dark-definition.scss';
10
+ @import 'ej2-dropdowns/styles/multi-select/bootstrap5-dark-definition.scss';
11
+ @import 'ej2-buttons/styles/button/bootstrap5-dark-definition.scss';
12
+ @import 'ej2-buttons/styles/check-box/bootstrap5-dark-definition.scss';
13
+ @import 'bootstrap5-dark-definition.scss';
14
+ @import 'icons/bootstrap5-dark.scss';
15
+ @import 'all.scss';
@@ -1 +1,16 @@
1
- @import 'ej2-schedule/styles/schedule/bootstrap5.scss';
1
+ @import 'ej2-base/styles/bootstrap5-definition.scss';
2
+ @import 'ej2-navigations/styles/toolbar/bootstrap5-definition.scss';
3
+ @import 'ej2-navigations/styles/treeview/bootstrap5-definition.scss';
4
+ @import 'ej2-inputs/styles/input/bootstrap5-definition.scss';
5
+ @import 'ej2-inputs/styles/numerictextbox/bootstrap5-definition.scss';
6
+ @import 'ej2-calendars/styles/calendar/bootstrap5-definition.scss';
7
+ @import 'ej2-calendars/styles/datepicker/bootstrap5-definition.scss';
8
+ @import 'ej2-calendars/styles/datetimepicker/bootstrap5-definition.scss';
9
+ @import 'ej2-dropdowns/styles/drop-down-list/bootstrap5-definition.scss';
10
+ @import 'ej2-dropdowns/styles/multi-select/bootstrap5-definition.scss';
11
+ @import 'ej2-buttons/styles/button/bootstrap5-definition.scss';
12
+ @import 'ej2-buttons/styles/check-box/bootstrap5-definition.scss';
13
+ @import '../recurrence-editor/bootstrap5-definition.scss';
14
+ @import 'bootstrap5-definition.scss';
15
+ @import 'icons/bootstrap5.scss';
16
+ @import 'all.scss';
@@ -1 +1,16 @@
1
- @import 'ej2-schedule/styles/schedule/fabric-dark.scss';
1
+ @import 'ej2-base/styles/fabric-dark-definition.scss';
2
+ @import 'ej2-navigations/styles/toolbar/fabric-dark-definition.scss';
3
+ @import 'ej2-navigations/styles/treeview/fabric-dark-definition.scss';
4
+ @import 'ej2-inputs/styles/input/fabric-dark-definition.scss';
5
+ @import 'ej2-inputs/styles/numerictextbox/fabric-dark-definition.scss';
6
+ @import 'ej2-calendars/styles/calendar/fabric-dark-definition.scss';
7
+ @import 'ej2-calendars/styles/datepicker/fabric-dark-definition.scss';
8
+ @import 'ej2-calendars/styles/datetimepicker/fabric-dark-definition.scss';
9
+ @import 'ej2-dropdowns/styles/drop-down-list/fabric-dark-definition.scss';
10
+ @import 'ej2-dropdowns/styles/multi-select/fabric-dark-definition.scss';
11
+ @import 'ej2-buttons/styles/button/fabric-dark-definition.scss';
12
+ @import 'ej2-buttons/styles/check-box/fabric-dark-definition.scss';
13
+ @import '../recurrence-editor/fabric-dark-definition.scss';
14
+ @import 'fabric-dark-definition.scss';
15
+ @import 'icons/fabric-dark.scss';
16
+ @import 'all.scss';
@@ -1 +1,16 @@
1
- @import 'ej2-schedule/styles/schedule/fabric.scss';
1
+ @import 'ej2-base/styles/fabric-definition.scss';
2
+ @import 'ej2-navigations/styles/toolbar/fabric-definition.scss';
3
+ @import 'ej2-navigations/styles/treeview/fabric-definition.scss';
4
+ @import 'ej2-inputs/styles/input/fabric-definition.scss';
5
+ @import 'ej2-inputs/styles/numerictextbox/fabric-definition.scss';
6
+ @import 'ej2-calendars/styles/calendar/fabric-definition.scss';
7
+ @import 'ej2-calendars/styles/datepicker/fabric-definition.scss';
8
+ @import 'ej2-calendars/styles/datetimepicker/fabric-definition.scss';
9
+ @import 'ej2-dropdowns/styles/drop-down-list/fabric-definition.scss';
10
+ @import 'ej2-dropdowns/styles/multi-select/fabric-definition.scss';
11
+ @import 'ej2-buttons/styles/button/fabric-definition.scss';
12
+ @import 'ej2-buttons/styles/check-box/fabric-definition.scss';
13
+ @import '../recurrence-editor/fabric-definition.scss';
14
+ @import 'fabric-definition.scss';
15
+ @import 'icons/fabric.scss';
16
+ @import 'all.scss';
@@ -1 +1,15 @@
1
- @import 'ej2-schedule/styles/schedule/fluent-dark.scss';
1
+ @import 'ej2-base/styles/fluent-dark-definition.scss';
2
+ @import 'ej2-navigations/styles/toolbar/fluent-dark-definition.scss';
3
+ @import 'ej2-navigations/styles/treeview/fluent-dark-definition.scss';
4
+ @import 'ej2-inputs/styles/input/fluent-dark-definition.scss';
5
+ @import 'ej2-inputs/styles/numerictextbox/fluent-dark-definition.scss';
6
+ @import 'ej2-calendars/styles/calendar/fluent-dark-definition.scss';
7
+ @import 'ej2-calendars/styles/datepicker/fluent-dark-definition.scss';
8
+ @import 'ej2-calendars/styles/datetimepicker/fluent-dark-definition.scss';
9
+ @import 'ej2-dropdowns/styles/drop-down-list/fluent-dark-definition.scss';
10
+ @import 'ej2-dropdowns/styles/multi-select/fluent-dark-definition.scss';
11
+ @import 'ej2-buttons/styles/button/fluent-dark-definition.scss';
12
+ @import 'ej2-buttons/styles/check-box/fluent-dark-definition.scss';
13
+ @import 'fluent-dark-definition.scss';
14
+ @import 'icons/fluent-dark.scss';
15
+ @import 'all.scss';