@syncfusion/ej2-schedule 21.1.37 → 21.1.39

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 (54) hide show
  1. package/CHANGELOG.md +16 -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 +32 -34
  6. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  7. package/dist/es6/ej2-schedule.es5.js +39 -41
  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 +12 -12
  13. package/src/schedule/base/schedule.d.ts +1 -0
  14. package/src/schedule/base/schedule.js +3 -2
  15. package/src/schedule/event-renderer/timeline-view.js +7 -14
  16. package/src/schedule/event-renderer/vertical-view.js +3 -9
  17. package/src/schedule/exports/print.js +13 -3
  18. package/src/schedule/renderer/month.js +2 -2
  19. package/src/schedule/renderer/renderer.js +1 -0
  20. package/src/schedule/renderer/timeline-year.js +4 -6
  21. package/src/schedule/renderer/vertical-view.js +5 -4
  22. package/src/schedule/renderer/view-base.js +1 -1
  23. package/styles/bootstrap-dark.css +10 -4
  24. package/styles/bootstrap.css +10 -4
  25. package/styles/bootstrap4.css +10 -4
  26. package/styles/bootstrap5-dark.css +10 -4
  27. package/styles/bootstrap5.css +10 -4
  28. package/styles/fabric-dark.css +10 -4
  29. package/styles/fabric.css +10 -4
  30. package/styles/fluent-dark.css +10 -4
  31. package/styles/fluent.css +10 -4
  32. package/styles/highcontrast-light.css +10 -4
  33. package/styles/highcontrast.css +10 -4
  34. package/styles/material-dark.css +10 -4
  35. package/styles/material.css +10 -4
  36. package/styles/schedule/_layout.scss +6 -2
  37. package/styles/schedule/_theme.scss +4 -2
  38. package/styles/schedule/bootstrap-dark.css +10 -4
  39. package/styles/schedule/bootstrap.css +10 -4
  40. package/styles/schedule/bootstrap4.css +10 -4
  41. package/styles/schedule/bootstrap5-dark.css +10 -4
  42. package/styles/schedule/bootstrap5.css +10 -4
  43. package/styles/schedule/fabric-dark.css +10 -4
  44. package/styles/schedule/fabric.css +10 -4
  45. package/styles/schedule/fluent-dark.css +10 -4
  46. package/styles/schedule/fluent.css +10 -4
  47. package/styles/schedule/highcontrast-light.css +10 -4
  48. package/styles/schedule/highcontrast.css +10 -4
  49. package/styles/schedule/material-dark.css +10 -4
  50. package/styles/schedule/material.css +10 -4
  51. package/styles/schedule/tailwind-dark.css +10 -4
  52. package/styles/schedule/tailwind.css +10 -4
  53. package/styles/tailwind-dark.css +10 -4
  54. package/styles/tailwind.css +10 -4
@@ -741,7 +741,9 @@
741
741
  }
742
742
  .e-schedule .e-event-resize.e-left-handler, .e-schedule .e-event-resize.e-right-handler {
743
743
  height: 100%;
744
- width: 10px;
744
+ min-width: 1px;
745
+ max-width: 10px;
746
+ width: 20%;
745
747
  }
746
748
  .e-schedule .e-event-resize.e-left-handler {
747
749
  cursor: ew-resize;
@@ -754,7 +756,9 @@
754
756
  right: 0;
755
757
  }
756
758
  .e-schedule .e-event-resize.e-top-handler, .e-schedule .e-event-resize.e-bottom-handler {
757
- height: 10px;
759
+ min-height: 1px;
760
+ max-height: 10px;
761
+ height: 20%;
758
762
  width: 100%;
759
763
  }
760
764
  .e-schedule .e-event-resize.e-top-handler {
@@ -3882,7 +3886,9 @@
3882
3886
  background: transparent;
3883
3887
  border-radius: 50%;
3884
3888
  color: #fff;
3885
- width: 20px;
3889
+ min-width: 20px;
3890
+ padding: 0 4px;
3891
+ width: fit-content;
3886
3892
  }
3887
3893
  .e-schedule .e-month-view .e-selected-cell,
3888
3894
  .e-schedule .e-month-agenda-view .e-selected-cell {
@@ -3912,7 +3918,7 @@
3912
3918
  border-width: 0;
3913
3919
  }
3914
3920
  .e-schedule .e-month-agenda-view .e-current-date .e-date-header {
3915
- width: 24px;
3921
+ min-width: 24px;
3916
3922
  }
3917
3923
  .e-schedule .e-timeline-view .e-date-header-wrap table td:first-child,
3918
3924
  .e-schedule .e-timeline-view .e-content-wrap table td:first-child,
@@ -745,7 +745,9 @@
745
745
  }
746
746
  .e-schedule .e-event-resize.e-left-handler, .e-schedule .e-event-resize.e-right-handler {
747
747
  height: 100%;
748
- width: 10px;
748
+ min-width: 1px;
749
+ max-width: 10px;
750
+ width: 20%;
749
751
  }
750
752
  .e-schedule .e-event-resize.e-left-handler {
751
753
  cursor: ew-resize;
@@ -758,7 +760,9 @@
758
760
  right: 0;
759
761
  }
760
762
  .e-schedule .e-event-resize.e-top-handler, .e-schedule .e-event-resize.e-bottom-handler {
761
- height: 10px;
763
+ min-height: 1px;
764
+ max-height: 10px;
765
+ height: 20%;
762
766
  width: 100%;
763
767
  }
764
768
  .e-schedule .e-event-resize.e-top-handler {
@@ -3886,7 +3890,9 @@
3886
3890
  background: transparent;
3887
3891
  border-radius: 50%;
3888
3892
  color: #ffd939;
3889
- width: 20px;
3893
+ min-width: 20px;
3894
+ padding: 0 4px;
3895
+ width: fit-content;
3890
3896
  }
3891
3897
  .e-schedule .e-month-view .e-selected-cell,
3892
3898
  .e-schedule .e-month-agenda-view .e-selected-cell {
@@ -3916,7 +3922,7 @@
3916
3922
  border-width: 0;
3917
3923
  }
3918
3924
  .e-schedule .e-month-agenda-view .e-current-date .e-date-header {
3919
- width: 24px;
3925
+ min-width: 24px;
3920
3926
  }
3921
3927
  .e-schedule .e-timeline-view .e-date-header-wrap table td:first-child,
3922
3928
  .e-schedule .e-timeline-view .e-content-wrap table td:first-child,
@@ -686,7 +686,9 @@
686
686
  }
687
687
  .e-schedule .e-event-resize.e-left-handler, .e-schedule .e-event-resize.e-right-handler {
688
688
  height: 100%;
689
- width: 10px;
689
+ min-width: 1px;
690
+ max-width: 10px;
691
+ width: 20%;
690
692
  }
691
693
  .e-schedule .e-event-resize.e-left-handler {
692
694
  cursor: ew-resize;
@@ -699,7 +701,9 @@
699
701
  right: 0;
700
702
  }
701
703
  .e-schedule .e-event-resize.e-top-handler, .e-schedule .e-event-resize.e-bottom-handler {
702
- height: 10px;
704
+ min-height: 1px;
705
+ max-height: 10px;
706
+ height: 20%;
703
707
  width: 100%;
704
708
  }
705
709
  .e-schedule .e-event-resize.e-top-handler {
@@ -3827,7 +3831,9 @@
3827
3831
  background: #00b0ff;
3828
3832
  border-radius: 50%;
3829
3833
  color: #000;
3830
- width: 20px;
3834
+ min-width: 20px;
3835
+ padding: 0 4px;
3836
+ width: fit-content;
3831
3837
  }
3832
3838
  .e-schedule .e-month-view .e-selected-cell,
3833
3839
  .e-schedule .e-month-agenda-view .e-selected-cell {
@@ -3857,7 +3863,7 @@
3857
3863
  border-width: 0;
3858
3864
  }
3859
3865
  .e-schedule .e-month-agenda-view .e-current-date .e-date-header {
3860
- width: 24px;
3866
+ min-width: 24px;
3861
3867
  }
3862
3868
  .e-schedule .e-timeline-view .e-date-header-wrap table td:first-child,
3863
3869
  .e-schedule .e-timeline-view .e-content-wrap table td:first-child,
@@ -722,7 +722,9 @@
722
722
  }
723
723
  .e-schedule .e-event-resize.e-left-handler, .e-schedule .e-event-resize.e-right-handler {
724
724
  height: 100%;
725
- width: 10px;
725
+ min-width: 1px;
726
+ max-width: 10px;
727
+ width: 20%;
726
728
  }
727
729
  .e-schedule .e-event-resize.e-left-handler {
728
730
  cursor: ew-resize;
@@ -735,7 +737,9 @@
735
737
  right: 0;
736
738
  }
737
739
  .e-schedule .e-event-resize.e-top-handler, .e-schedule .e-event-resize.e-bottom-handler {
738
- height: 10px;
740
+ min-height: 1px;
741
+ max-height: 10px;
742
+ height: 20%;
739
743
  width: 100%;
740
744
  }
741
745
  .e-schedule .e-event-resize.e-top-handler {
@@ -3863,7 +3867,9 @@
3863
3867
  background: #e3165b;
3864
3868
  border-radius: 50%;
3865
3869
  color: #fff;
3866
- width: 20px;
3870
+ min-width: 20px;
3871
+ padding: 0 4px;
3872
+ width: fit-content;
3867
3873
  }
3868
3874
  .e-schedule .e-month-view .e-selected-cell,
3869
3875
  .e-schedule .e-month-agenda-view .e-selected-cell {
@@ -3893,7 +3899,7 @@
3893
3899
  border-width: 0;
3894
3900
  }
3895
3901
  .e-schedule .e-month-agenda-view .e-current-date .e-date-header {
3896
- width: 24px;
3902
+ min-width: 24px;
3897
3903
  }
3898
3904
  .e-schedule .e-timeline-view .e-date-header-wrap table td:first-child,
3899
3905
  .e-schedule .e-timeline-view .e-content-wrap table td:first-child,
@@ -692,7 +692,9 @@
692
692
  }
693
693
  .e-schedule .e-event-resize.e-left-handler, .e-schedule .e-event-resize.e-right-handler {
694
694
  height: 100%;
695
- width: 10px;
695
+ min-width: 1px;
696
+ max-width: 10px;
697
+ width: 20%;
696
698
  }
697
699
  .e-schedule .e-event-resize.e-left-handler {
698
700
  cursor: ew-resize;
@@ -705,7 +707,9 @@
705
707
  right: 0;
706
708
  }
707
709
  .e-schedule .e-event-resize.e-top-handler, .e-schedule .e-event-resize.e-bottom-handler {
708
- height: 10px;
710
+ min-height: 1px;
711
+ max-height: 10px;
712
+ height: 20%;
709
713
  width: 100%;
710
714
  }
711
715
  .e-schedule .e-event-resize.e-top-handler {
@@ -3833,7 +3837,9 @@
3833
3837
  background: #22d3ee;
3834
3838
  border-radius: 50%;
3835
3839
  color: #000;
3836
- width: 20px;
3840
+ min-width: 20px;
3841
+ padding: 0 4px;
3842
+ width: fit-content;
3837
3843
  }
3838
3844
  .e-schedule .e-month-view .e-selected-cell,
3839
3845
  .e-schedule .e-month-agenda-view .e-selected-cell {
@@ -3863,7 +3869,7 @@
3863
3869
  border-width: 0;
3864
3870
  }
3865
3871
  .e-schedule .e-month-agenda-view .e-current-date .e-date-header {
3866
- width: 24px;
3872
+ min-width: 24px;
3867
3873
  }
3868
3874
  .e-schedule .e-timeline-view .e-date-header-wrap table td:first-child,
3869
3875
  .e-schedule .e-timeline-view .e-content-wrap table td:first-child,
@@ -692,7 +692,9 @@
692
692
  }
693
693
  .e-schedule .e-event-resize.e-left-handler, .e-schedule .e-event-resize.e-right-handler {
694
694
  height: 100%;
695
- width: 10px;
695
+ min-width: 1px;
696
+ max-width: 10px;
697
+ width: 20%;
696
698
  }
697
699
  .e-schedule .e-event-resize.e-left-handler {
698
700
  cursor: ew-resize;
@@ -705,7 +707,9 @@
705
707
  right: 0;
706
708
  }
707
709
  .e-schedule .e-event-resize.e-top-handler, .e-schedule .e-event-resize.e-bottom-handler {
708
- height: 10px;
710
+ min-height: 1px;
711
+ max-height: 10px;
712
+ height: 20%;
709
713
  width: 100%;
710
714
  }
711
715
  .e-schedule .e-event-resize.e-top-handler {
@@ -3833,7 +3837,9 @@
3833
3837
  background: #4f46e5;
3834
3838
  border-radius: 50%;
3835
3839
  color: #fff;
3836
- width: 20px;
3840
+ min-width: 20px;
3841
+ padding: 0 4px;
3842
+ width: fit-content;
3837
3843
  }
3838
3844
  .e-schedule .e-month-view .e-selected-cell,
3839
3845
  .e-schedule .e-month-agenda-view .e-selected-cell {
@@ -3863,7 +3869,7 @@
3863
3869
  border-width: 0;
3864
3870
  }
3865
3871
  .e-schedule .e-month-agenda-view .e-current-date .e-date-header {
3866
- width: 24px;
3872
+ min-width: 24px;
3867
3873
  }
3868
3874
  .e-schedule .e-timeline-view .e-date-header-wrap table td:first-child,
3869
3875
  .e-schedule .e-timeline-view .e-content-wrap table td:first-child,
@@ -693,7 +693,9 @@
693
693
  }
694
694
  .e-schedule .e-event-resize.e-left-handler, .e-schedule .e-event-resize.e-right-handler {
695
695
  height: 100%;
696
- width: 10px;
696
+ min-width: 1px;
697
+ max-width: 10px;
698
+ width: 20%;
697
699
  }
698
700
  .e-schedule .e-event-resize.e-left-handler {
699
701
  cursor: ew-resize;
@@ -706,7 +708,9 @@
706
708
  right: 0;
707
709
  }
708
710
  .e-schedule .e-event-resize.e-top-handler, .e-schedule .e-event-resize.e-bottom-handler {
709
- height: 10px;
711
+ min-height: 1px;
712
+ max-height: 10px;
713
+ height: 20%;
710
714
  width: 100%;
711
715
  }
712
716
  .e-schedule .e-event-resize.e-top-handler {
@@ -3834,7 +3838,9 @@
3834
3838
  background: #22d3ee;
3835
3839
  border-radius: 50%;
3836
3840
  color: #000;
3837
- width: 20px;
3841
+ min-width: 20px;
3842
+ padding: 0 4px;
3843
+ width: fit-content;
3838
3844
  }
3839
3845
  .e-schedule .e-month-view .e-selected-cell,
3840
3846
  .e-schedule .e-month-agenda-view .e-selected-cell {
@@ -3864,7 +3870,7 @@
3864
3870
  border-width: 0;
3865
3871
  }
3866
3872
  .e-schedule .e-month-agenda-view .e-current-date .e-date-header {
3867
- width: 24px;
3873
+ min-width: 24px;
3868
3874
  }
3869
3875
  .e-schedule .e-timeline-view .e-date-header-wrap table td:first-child,
3870
3876
  .e-schedule .e-timeline-view .e-content-wrap table td:first-child,
@@ -693,7 +693,9 @@
693
693
  }
694
694
  .e-schedule .e-event-resize.e-left-handler, .e-schedule .e-event-resize.e-right-handler {
695
695
  height: 100%;
696
- width: 10px;
696
+ min-width: 1px;
697
+ max-width: 10px;
698
+ width: 20%;
697
699
  }
698
700
  .e-schedule .e-event-resize.e-left-handler {
699
701
  cursor: ew-resize;
@@ -706,7 +708,9 @@
706
708
  right: 0;
707
709
  }
708
710
  .e-schedule .e-event-resize.e-top-handler, .e-schedule .e-event-resize.e-bottom-handler {
709
- height: 10px;
711
+ min-height: 1px;
712
+ max-height: 10px;
713
+ height: 20%;
710
714
  width: 100%;
711
715
  }
712
716
  .e-schedule .e-event-resize.e-top-handler {
@@ -3834,7 +3838,9 @@
3834
3838
  background: #4f46e5;
3835
3839
  border-radius: 50%;
3836
3840
  color: #fff;
3837
- width: 20px;
3841
+ min-width: 20px;
3842
+ padding: 0 4px;
3843
+ width: fit-content;
3838
3844
  }
3839
3845
  .e-schedule .e-month-view .e-selected-cell,
3840
3846
  .e-schedule .e-month-agenda-view .e-selected-cell {
@@ -3864,7 +3870,7 @@
3864
3870
  border-width: 0;
3865
3871
  }
3866
3872
  .e-schedule .e-month-agenda-view .e-current-date .e-date-header {
3867
- width: 24px;
3873
+ min-width: 24px;
3868
3874
  }
3869
3875
  .e-schedule .e-timeline-view .e-date-header-wrap table td:first-child,
3870
3876
  .e-schedule .e-timeline-view .e-content-wrap table td:first-child,