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

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 (124) 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/_tailwind-dark-definition.scss +1 -0
  44. package/styles/recurrence-editor/_tailwind-definition.scss +13 -0
  45. package/styles/recurrence-editor/_theme.scss +1 -0
  46. package/styles/recurrence-editor/bootstrap-dark.scss +8 -1
  47. package/styles/recurrence-editor/bootstrap.scss +8 -1
  48. package/styles/recurrence-editor/bootstrap4.scss +8 -1
  49. package/styles/recurrence-editor/bootstrap5-dark.scss +8 -1
  50. package/styles/recurrence-editor/bootstrap5.scss +8 -1
  51. package/styles/recurrence-editor/fabric-dark.scss +8 -1
  52. package/styles/recurrence-editor/fabric.scss +8 -1
  53. package/styles/recurrence-editor/fluent-dark.scss +8 -1
  54. package/styles/recurrence-editor/fluent.scss +8 -1
  55. package/styles/recurrence-editor/highcontrast-light.scss +8 -1
  56. package/styles/recurrence-editor/highcontrast.scss +8 -1
  57. package/styles/recurrence-editor/material-dark.scss +8 -1
  58. package/styles/recurrence-editor/material.scss +8 -1
  59. package/styles/recurrence-editor/tailwind-dark.scss +8 -1
  60. package/styles/recurrence-editor/tailwind.scss +8 -1
  61. package/styles/schedule/_all.scss +2 -0
  62. package/styles/schedule/_bootstrap-dark-definition.scss +279 -0
  63. package/styles/schedule/_bootstrap-definition.scss +279 -0
  64. package/styles/schedule/_bootstrap4-definition.scss +282 -0
  65. package/styles/schedule/_bootstrap5-dark-definition.scss +1 -0
  66. package/styles/schedule/_bootstrap5-definition.scss +289 -0
  67. package/styles/schedule/_fabric-dark-definition.scss +278 -0
  68. package/styles/schedule/_fabric-definition.scss +279 -0
  69. package/styles/schedule/_fluent-dark-definition.scss +1 -0
  70. package/styles/schedule/_fluent-definition.scss +284 -0
  71. package/styles/schedule/_fusionnew-definition.scss +288 -0
  72. package/styles/schedule/_highcontrast-definition.scss +280 -0
  73. package/styles/schedule/_highcontrast-light-definition.scss +280 -0
  74. package/styles/schedule/_layout.scss +4115 -0
  75. package/styles/schedule/_material-dark-definition.scss +279 -0
  76. package/styles/schedule/_material-definition.scss +279 -0
  77. package/styles/schedule/_tailwind-dark-definition.scss +1 -0
  78. package/styles/schedule/_tailwind-definition.scss +281 -0
  79. package/styles/schedule/_theme.scss +544 -0
  80. package/styles/schedule/bootstrap-dark.scss +16 -1
  81. package/styles/schedule/bootstrap.scss +16 -1
  82. package/styles/schedule/bootstrap4.scss +16 -1
  83. package/styles/schedule/bootstrap5-dark.scss +15 -1
  84. package/styles/schedule/bootstrap5.scss +16 -1
  85. package/styles/schedule/fabric-dark.scss +16 -1
  86. package/styles/schedule/fabric.scss +16 -1
  87. package/styles/schedule/fluent-dark.scss +15 -1
  88. package/styles/schedule/fluent.scss +16 -1
  89. package/styles/schedule/highcontrast-light.scss +16 -1
  90. package/styles/schedule/highcontrast.scss +16 -1
  91. package/styles/schedule/icons/_bootstrap-dark.scss +231 -0
  92. package/styles/schedule/icons/_bootstrap.scss +231 -0
  93. package/styles/schedule/icons/_bootstrap4.scss +231 -0
  94. package/styles/schedule/icons/_bootstrap5-dark.scss +1 -0
  95. package/styles/schedule/icons/_bootstrap5.scss +231 -0
  96. package/styles/schedule/icons/_fabric-dark.scss +231 -0
  97. package/styles/schedule/icons/_fabric.scss +231 -0
  98. package/styles/schedule/icons/_fluent-dark.scss +1 -0
  99. package/styles/schedule/icons/_fluent.scss +231 -0
  100. package/styles/schedule/icons/_fusionnew.scss +231 -0
  101. package/styles/schedule/icons/_highcontrast-light.scss +231 -0
  102. package/styles/schedule/icons/_highcontrast.scss +231 -0
  103. package/styles/schedule/icons/_material-dark.scss +231 -0
  104. package/styles/schedule/icons/_material.scss +231 -0
  105. package/styles/schedule/icons/_material3.scss +231 -0
  106. package/styles/schedule/icons/_tailwind-dark.scss +1 -0
  107. package/styles/schedule/icons/_tailwind.scss +231 -0
  108. package/styles/schedule/material-dark.scss +16 -1
  109. package/styles/schedule/material.scss +16 -1
  110. package/styles/schedule/tailwind-dark.scss +15 -1
  111. package/styles/schedule/tailwind.scss +16 -1
  112. package/syncfusion-ej2-angular-schedule.d.ts +5 -0
  113. package/@syncfusion/ej2-angular-schedule.es5.js +0 -850
  114. package/@syncfusion/ej2-angular-schedule.es5.js.map +0 -1
  115. package/@syncfusion/ej2-angular-schedule.js +0 -798
  116. package/@syncfusion/ej2-angular-schedule.js.map +0 -1
  117. package/CHANGELOG.md +0 -1674
  118. package/dist/ej2-angular-schedule.umd.js +0 -991
  119. package/dist/ej2-angular-schedule.umd.js.map +0 -1
  120. package/dist/ej2-angular-schedule.umd.min.js +0 -11
  121. package/dist/ej2-angular-schedule.umd.min.js.map +0 -1
  122. package/ej2-angular-schedule.d.ts +0 -6
  123. package/ej2-angular-schedule.metadata.json +0 -1
  124. package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,544 @@
1
+ @include export-module('schedule-theme') {
2
+
3
+ /*! schedule component theme */
4
+ .e-schedule {
5
+ background: $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: $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: $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: $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: $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: $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: $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: $schedule-workhour-bg-color;
117
+ }
118
+
119
+ .e-all-day-cells {
120
+ background: $schedule-header-bg-color;
121
+
122
+ &.e-current-day {
123
+ color: $schedule-active-font-color;
124
+ }
125
+
126
+ &.e-selected-cell {
127
+ background: $schedule-select-bg-color;
128
+ color: $schedule-hover-font-color;
129
+
130
+ &:hover {
131
+ background: $schedule-select-bg-color;
132
+ color: $schedule-selected-cell-hover-font-color;
133
+ }
134
+ }
135
+ }
136
+
137
+ .e-selected-cell {
138
+ background: $schedule-select-bg-color;
139
+ color: $schedule-hover-font-color;
140
+
141
+ &:hover {
142
+ background: $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: $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: $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: $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: $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: $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: $schedule-select-bg-color;
237
+ }
238
+ }
239
+ }
240
+
241
+ .e-month-agenda-view {
242
+ .e-content-wrap .e-table-container {
243
+ overflow: auto;
244
+ }
245
+
246
+ .e-date-header-wrap table td {
247
+ border-width: $schedule-month-agenda-header-cells-border;
248
+ text-align: center;
249
+ }
250
+
251
+ .e-work-cells {
252
+ border-width: $schedule-month-agenda-work-cells-border;
253
+ }
254
+
255
+ .e-current-date .e-date-header {
256
+ width: 24px;
257
+ }
258
+ }
259
+
260
+ .e-timeline-view,
261
+ .e-timeline-month-view {
262
+ .e-date-header-wrap table td:first-child,
263
+ .e-content-wrap table td:first-child {
264
+ border-left-width: 0;
265
+ }
266
+
267
+ .e-content-wrap table tr:last-child td {
268
+ border-bottom-width: 0;
269
+ }
270
+
271
+ .e-date-header-wrap table td {
272
+ background: $schedule-header-bg-color;
273
+ border-color: $schedule-header-border-color;
274
+ border-style: $border-type;
275
+ border-width: $schedule-timeline-work-cells-border;
276
+ color: $schedule-header-font-color;
277
+
278
+ &.e-current-day {
279
+ color: $schedule-active-font-color;
280
+ font-weight: $schedule-current-day-font-weight;
281
+ }
282
+ }
283
+
284
+ .e-work-cells {
285
+ background: $schedule-work-cells-bg-color;
286
+ border-color: $schedule-content-border-color;
287
+ border-style: $border-type;
288
+ border-width: $schedule-timeline-work-cells-border;
289
+ color: $schedule-primary-content-font-color;
290
+ padding: 0;
291
+
292
+ &:hover:not(.e-resource-group-cells) {
293
+ background: $schedule-hover-bg-color;
294
+ color: $schedule-hover-font-color;
295
+ }
296
+ }
297
+
298
+ &.e-virtual-mask .e-work-cells:hover {
299
+ background: $schedule-disable-dates-color;
300
+ }
301
+
302
+ .e-work-days {
303
+ background: $schedule-workhour-bg-color;
304
+ }
305
+
306
+ .e-resource-group-cells {
307
+ background: $schedule-work-cells-bg-color;
308
+ }
309
+
310
+ .e-selected-cell {
311
+ background: $schedule-select-bg-color;
312
+ color: $schedule-select-font-color;
313
+
314
+ &:hover:not(.e-resource-group-cells) {
315
+ background: $schedule-select-bg-color;
316
+ }
317
+ }
318
+ }
319
+
320
+ .e-timeline-view {
321
+ .e-work-hours {
322
+ background: $schedule-workhour-bg-color;
323
+ }
324
+
325
+ .e-resource-group-cells {
326
+ background: $schedule-work-cells-bg-color;
327
+ }
328
+
329
+ .e-selected-cell {
330
+ background: $schedule-select-bg-color;
331
+ color: $schedule-hover-font-color;
332
+
333
+ &:hover {
334
+ background: $schedule-select-bg-color;
335
+ }
336
+ }
337
+
338
+ .e-alternate-cells {
339
+ border-left-style: $schedule-alternate-cell-border;
340
+ }
341
+
342
+ .e-header-row .e-time-cells {
343
+ border-left-width: 0;
344
+ }
345
+
346
+ .e-clone-time-indicator,
347
+ .e-current-time {
348
+ color: $schedule-active-font-color;
349
+ font-size: $schedule-current-time-nrml-font-size;
350
+ }
351
+
352
+ .e-current-timeline {
353
+ border-left: 1px $border-type $schedule-active-border-color;
354
+ }
355
+ }
356
+
357
+ .e-timeline-year-view {
358
+ .e-work-cells {
359
+ background: $schedule-work-cells-bg-color;
360
+ border-color: $schedule-content-border-color;
361
+ border-style: $border-type;
362
+ border-width: 0 $border-size $border-size 0;
363
+ color: $schedule-primary-content-font-color;
364
+ padding: 0;
365
+
366
+ &:hover:not(.e-other-month) {
367
+ background: $schedule-hover-bg-color;
368
+ color: $schedule-hover-font-color;
369
+ }
370
+
371
+ &.e-work-days {
372
+ background: $schedule-workhour-bg-color;
373
+ }
374
+
375
+ &.e-other-month {
376
+ color: $schedule-secondary-content-font-color;
377
+ }
378
+
379
+ &.e-current-day .e-date-header {
380
+ background: $schedule-current-date-bg-color;
381
+ border-radius: 50%;
382
+ color: $schedule-current-day-active-color;
383
+ margin: 2px;
384
+ width: 20px;
385
+ }
386
+
387
+ &.e-selected-cell {
388
+ background: $schedule-select-bg-color;
389
+ color: $schedule-select-font-color;
390
+
391
+ .e-date-header {
392
+ color: $schedule-select-font-color;
393
+ }
394
+
395
+ .e-more-indicator {
396
+ color: $schedule-select-font-color;
397
+ }
398
+
399
+ &:hover {
400
+ background: $schedule-select-bg-color;
401
+ }
402
+ }
403
+
404
+ &.e-disable-dates {
405
+ background: $schedule-disable-dates-color;
406
+
407
+ .e-date-header {
408
+ cursor: default;
409
+ opacity: .35;
410
+
411
+ &:hover {
412
+ text-decoration: none;
413
+ }
414
+ }
415
+
416
+ &:hover {
417
+ background: $schedule-disable-dates-color;
418
+ }
419
+ }
420
+ }
421
+
422
+ &.e-virtual-mask .e-work-cells {
423
+ background: $schedule-disable-dates-color;
424
+ box-shadow: inset 0 0 0 8px $schedule-work-cells-bg-color;
425
+
426
+ &:hover {
427
+ background: $schedule-disable-dates-color;
428
+ }
429
+ }
430
+ }
431
+
432
+ #{if(&, '&', '*')}.e-rtl {
433
+ .e-vertical-view {
434
+ .e-date-header-wrap table tbody td:first-child,
435
+ .e-content-wrap table td:first-child {
436
+ border-right-width: 0;
437
+ }
438
+
439
+ .e-date-header-wrap table tbody td {
440
+ text-align: right;
441
+ }
442
+
443
+ .e-date-header-wrap table tbody td,
444
+ .e-work-cells {
445
+ border-width: $schedule-rtl-vertical-work-cells-border;
446
+ }
447
+
448
+ .e-left-indent-wrap .e-header-cells,
449
+ .e-date-header-wrap .e-header-cells {
450
+ border-bottom-width: 0;
451
+ }
452
+
453
+ .e-left-indent-wrap table tbody td,
454
+ .e-time-cells-wrap table tbody td {
455
+ border-width: 0 0 1px 1px;
456
+ }
457
+ }
458
+
459
+ .e-month-view {
460
+ .e-date-header-wrap table td:first-child,
461
+ .e-content-wrap table td:first-child {
462
+ border-right-width: 0;
463
+ }
464
+
465
+ .e-date-header-wrap table td {
466
+ text-align: right;
467
+ border-width: $schedule-rtl-month-work-cells-border;
468
+ }
469
+ }
470
+
471
+ .e-month-view,
472
+ .e-month-agenda-view {
473
+ .e-work-cells {
474
+ border-width: $schedule-rtl-month-work-cells-border;
475
+ }
476
+ }
477
+
478
+ .e-month-agenda-view {
479
+ .e-work-cells {
480
+ border-width: $schedule-rtl-month-agenda-work-cells-border;
481
+ }
482
+ }
483
+
484
+ .e-timeline-view,
485
+ .e-timeline-month-view {
486
+ .e-date-header-wrap table td:first-child,
487
+ .e-content-wrap table td:first-child {
488
+ border-right-width: 0;
489
+ }
490
+
491
+ .e-date-header-wrap table td:last-child,
492
+ .e-content-wrap table td:last-child {
493
+ border-left-width: 0;
494
+ }
495
+
496
+ .e-date-header-wrap table td,
497
+ .e-content-wrap table td {
498
+ border-width: $schedule-rtl-timeline-work-cells-border;
499
+ }
500
+ }
501
+
502
+ .e-timeline-view {
503
+ .e-alternate-cells {
504
+ border-right-style: $schedule-alternate-cell-border;
505
+ }
506
+
507
+ .e-header-row .e-time-cells {
508
+ border-right-width: 0;
509
+ }
510
+ }
511
+ }
512
+ }
513
+
514
+ .e-tooltip-wrap.e-schedule-error {
515
+ background: $schedule-val-error-bg-color;
516
+ border-color: $schedule-val-error-bg-color;
517
+ z-index: 1000;
518
+
519
+ .e-arrow-tip.e-tip-top {
520
+ left: 44%;
521
+ }
522
+
523
+ .e-arrow-tip-inner.e-tip-top,
524
+ .e-arrow-tip-outer.e-tip-top {
525
+ border-bottom: 8px solid $schedule-val-error-bg-color;
526
+ color: $schedule-val-error-bg-color;
527
+ }
528
+
529
+ .e-arrow-tip-outer.e-tip-bottom,
530
+ .e-arrow-tip-inner.e-tip-bottom {
531
+ border-top: 8px solid $schedule-val-error-bg-color;
532
+ color: $schedule-val-error-bg-color;
533
+ }
534
+
535
+ .e-tip-content {
536
+ padding: $schedule-tip-content-padding;
537
+ }
538
+
539
+ .e-tip-content,
540
+ .e-tip-content label {
541
+ color: $schedule-val-error-color;
542
+ }
543
+ }
544
+ }
@@ -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';