@progress/kendo-angular-scheduler 13.4.1-develop.1 → 13.4.1-develop.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data-binding.directive.d.ts +1 -8
- package/editing/edit-dialog-template.directive.d.ts +1 -1
- package/editing-directives/reactive-editing.directive.d.ts +1 -1
- package/esm2020/data-binding.directive.mjs +1 -8
- package/esm2020/editing/edit-dialog-template.directive.mjs +1 -1
- package/esm2020/editing-directives/reactive-editing.directive.mjs +1 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/pdf/pdf-command.directive.mjs +1 -5
- package/esm2020/pdf/pdf.module.mjs +7 -19
- package/esm2020/scheduler.module.mjs +8 -20
- package/esm2020/toolbar/toolbar-template.directive.mjs +0 -8
- package/esm2020/views/scheduler-view.directive.mjs +1 -1
- package/esm2020/views/templates/agenda-date-template.directive.mjs +1 -8
- package/esm2020/views/templates/agenda-time-template.directive.mjs +1 -8
- package/esm2020/views/templates/all-day-event-template.directive.mjs +1 -8
- package/esm2020/views/templates/all-day-slot-template.directive.mjs +1 -8
- package/esm2020/views/templates/date-header-template.directive.mjs +1 -8
- package/esm2020/views/templates/event-template.directive.mjs +1 -8
- package/esm2020/views/templates/group-header-template.directive.mjs +1 -8
- package/esm2020/views/templates/major-time-header-template.directive.mjs +1 -8
- package/esm2020/views/templates/minor-time-header-template.directive.mjs +1 -8
- package/esm2020/views/templates/month-day-slot-template.directive.mjs +1 -8
- package/esm2020/views/templates/multi-week-day-slot-template.directive.mjs +1 -1
- package/esm2020/views/templates/time-slot-template.directive.mjs +1 -8
- package/fesm2015/progress-kendo-angular-scheduler.mjs +34 -154
- package/fesm2020/progress-kendo-angular-scheduler.mjs +34 -154
- package/package.json +12 -12
- package/pdf/pdf-command.directive.d.ts +1 -5
- package/pdf/pdf.module.d.ts +7 -19
- package/scheduler.module.d.ts +8 -20
- package/schematics/ngAdd/index.js +2 -2
- package/toolbar/toolbar-template.directive.d.ts +0 -8
- package/views/scheduler-view.directive.d.ts +1 -1
- package/views/templates/agenda-date-template.directive.d.ts +1 -8
- package/views/templates/agenda-time-template.directive.d.ts +1 -8
- package/views/templates/all-day-event-template.directive.d.ts +1 -8
- package/views/templates/all-day-slot-template.directive.d.ts +1 -8
- package/views/templates/date-header-template.directive.d.ts +1 -8
- package/views/templates/event-template.directive.d.ts +1 -8
- package/views/templates/group-header-template.directive.d.ts +1 -8
- package/views/templates/major-time-header-template.directive.d.ts +1 -8
- package/views/templates/minor-time-header-template.directive.d.ts +1 -8
- package/views/templates/month-day-slot-template.directive.d.ts +1 -8
- package/views/templates/multi-week-day-slot-template.directive.d.ts +1 -1
- package/views/templates/time-slot-template.directive.d.ts +1 -8
|
@@ -48,8 +48,8 @@ const packageMetadata = {
|
|
|
48
48
|
name: '@progress/kendo-angular-scheduler',
|
|
49
49
|
productName: 'Kendo UI for Angular',
|
|
50
50
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
51
|
-
publishDate:
|
|
52
|
-
version: '13.4.1-develop.
|
|
51
|
+
publishDate: 1693387593,
|
|
52
|
+
version: '13.4.1-develop.2',
|
|
53
53
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
54
54
|
};
|
|
55
55
|
|
|
@@ -384,14 +384,6 @@ class SlotDragEndEvent extends SlotDragEvent {
|
|
|
384
384
|
*
|
|
385
385
|
* To emit navigation events, the components inside the toolbar can inject
|
|
386
386
|
* the [`ToolbarService`]({% slug api_scheduler_toolbarservice %}).
|
|
387
|
-
*
|
|
388
|
-
* {% meta height:700 %}
|
|
389
|
-
* {% embed_file toolbar/template/app.component.ts preview %}
|
|
390
|
-
* {% embed_file toolbar/template/my-navigation.component.ts %}
|
|
391
|
-
* {% embed_file toolbar/template/app.module.ts %}
|
|
392
|
-
* {% embed_file shared/events-utc.ts %}
|
|
393
|
-
* {% embed_file shared/main.ts %}
|
|
394
|
-
* {% endmeta %}
|
|
395
387
|
*/
|
|
396
388
|
class ToolbarTemplateDirective {
|
|
397
389
|
constructor(templateRef) {
|
|
@@ -489,17 +481,10 @@ var slotDragEventName;
|
|
|
489
481
|
/**
|
|
490
482
|
* Represents the template which renders the date header in the **Agenda** view.
|
|
491
483
|
* To define the date template, nest an `<ng-template>` tag with the `kendoSchedulerAgendaDateTemplate`
|
|
492
|
-
* directive inside the `<kendo-scheduler-agenda-view>` or `<kendo-scheduler>` components.
|
|
484
|
+
* directive inside the `<kendo-scheduler-agenda-view>` or `<kendo-scheduler>` components ([see example](slug:templates_scheduler#toc-agenda-dates)).
|
|
493
485
|
*
|
|
494
486
|
* The available fields in the template context are:
|
|
495
487
|
* - `date`—The header date.
|
|
496
|
-
*
|
|
497
|
-
* {% meta height:500 %}
|
|
498
|
-
* {% embed_file templates/agenda-date-header/app.component.ts preview %}
|
|
499
|
-
* {% embed_file templates/agenda-date-header/app.module.ts %}
|
|
500
|
-
* {% embed_file shared/main.ts %}
|
|
501
|
-
* {% embed_file shared/events-utc.ts %}
|
|
502
|
-
* {% endmeta %}
|
|
503
488
|
*/
|
|
504
489
|
class AgendaDateTemplateDirective {
|
|
505
490
|
constructor(templateRef) {
|
|
@@ -520,7 +505,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
520
505
|
/**
|
|
521
506
|
* Represents the template which renders the time header in the **Agenda** view.
|
|
522
507
|
* To define the time template, nest an `<ng-template>` tag with the `kendoSchedulerAgendaTimeTemplate`
|
|
523
|
-
* directive inside the `<kendo-scheduler>` or in the `<kendo-scheduler-agenda-view>` component.
|
|
508
|
+
* directive inside the `<kendo-scheduler>` or in the `<kendo-scheduler-agenda-view>` component ([see example](slug:templates_scheduler#toc-agenda-times)).
|
|
524
509
|
*
|
|
525
510
|
* The available fields in the template context are:
|
|
526
511
|
* - `start`—The start date of the event.
|
|
@@ -529,13 +514,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
529
514
|
* - `description`—The description of the event.
|
|
530
515
|
* - `isAllDay`—A Boolean value which indicates if the event is all-day.
|
|
531
516
|
* - `resources`—The resources of the event.
|
|
532
|
-
*
|
|
533
|
-
* {% meta height:500 %}
|
|
534
|
-
* {% embed_file templates/agenda-time-header/app.component.ts preview %}
|
|
535
|
-
* {% embed_file templates/agenda-time-header/app.module.ts %}
|
|
536
|
-
* {% embed_file shared/main.ts %}
|
|
537
|
-
* {% embed_file shared/events-utc.ts %}
|
|
538
|
-
* {% endmeta %}
|
|
539
517
|
*/
|
|
540
518
|
class AgendaTimeTemplateDirective {
|
|
541
519
|
constructor(templateRef) {
|
|
@@ -556,18 +534,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
556
534
|
/**
|
|
557
535
|
* Represents the template for and assists the content customization of all-day events.
|
|
558
536
|
* To define the all-day event template, nest an `<ng-template>` tag with the `kendoSchedulerAllDayEventTemplate`
|
|
559
|
-
* directive inside the `<kendo-scheduler>`, `<kendo-scheduler-day-view>`, or
|
|
537
|
+
* directive inside the `<kendo-scheduler>`, `<kendo-scheduler-day-view>`, or `<kendo-scheduler-week-view>` component ([see example](slug:templates_scheduler#toc-all-day-events)).
|
|
560
538
|
*
|
|
561
539
|
* The available fields in the template context are:
|
|
562
540
|
* - `event`—The event that is associated with the item.
|
|
563
541
|
* - `resources`—The resources of the event.
|
|
564
|
-
*
|
|
565
|
-
* {% meta height:500 %}
|
|
566
|
-
* {% embed_file templates/all-day-event/app.component.ts preview %}
|
|
567
|
-
* {% embed_file templates/all-day-event/app.module.ts %}
|
|
568
|
-
* {% embed_file shared/main.ts %}
|
|
569
|
-
* {% embed_file shared/events-utc.ts %}
|
|
570
|
-
* {% endmeta %}
|
|
571
542
|
*/
|
|
572
543
|
class AllDayEventTemplateDirective {
|
|
573
544
|
constructor(templateRef) {
|
|
@@ -588,18 +559,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
588
559
|
/**
|
|
589
560
|
* Represents the template for and assists the content customization of all-day slots.
|
|
590
561
|
* To define the all-day slot template, nest an `<ng-template>` tag with the `kendoSchedulerAllDaySlotTemplate`
|
|
591
|
-
* directive inside the `<kendo-scheduler>`, `<kendo-scheduler-day-view>`, or
|
|
562
|
+
* directive inside the `<kendo-scheduler>`, `<kendo-scheduler-day-view>`, or `<kendo-scheduler-week-view>` component ([see example](slug:templates_scheduler#toc-all-day-slots)).
|
|
592
563
|
*
|
|
593
564
|
* The available fields in the template context are:
|
|
594
565
|
* - `date`—The date of the slot.
|
|
595
566
|
* - `resources`—The resources of the slot.
|
|
596
|
-
*
|
|
597
|
-
* {% meta height:500 %}
|
|
598
|
-
* {% embed_file templates/all-day-slot/app.component.ts preview %}
|
|
599
|
-
* {% embed_file templates/all-day-slot/app.module.ts %}
|
|
600
|
-
* {% embed_file shared/main.ts %}
|
|
601
|
-
* {% embed_file shared/events-utc.ts %}
|
|
602
|
-
* {% endmeta %}
|
|
603
567
|
*/
|
|
604
568
|
class AllDaySlotTemplateDirective {
|
|
605
569
|
constructor(templateRef) {
|
|
@@ -621,17 +585,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
621
585
|
* Represents the template which renders the date header in the **Day**, **Week**, and **Timeline** views.
|
|
622
586
|
* To define the day template, nest an `<ng-template>` tag with the `kendoSchedulerDateHeaderTemplate`
|
|
623
587
|
* directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-day-view>`, `<kendo-scheduler-week-view>`,
|
|
624
|
-
* `<kendo-scheduler-timeline-view>`, `<kendo-scheduler-timeline-week-view>`, and `<kendo-scheduler-timeline-month-view>` components.
|
|
588
|
+
* `<kendo-scheduler-timeline-view>`, `<kendo-scheduler-timeline-week-view>`, and `<kendo-scheduler-timeline-month-view>` components ([see example](slug:templates_scheduler#toc-date-headers)).
|
|
625
589
|
*
|
|
626
590
|
* The available fields in the template context are:
|
|
627
591
|
* - `date`—The header date.
|
|
628
|
-
*
|
|
629
|
-
* {% meta height:500 %}
|
|
630
|
-
* {% embed_file templates/date-header/app.component.ts preview %}
|
|
631
|
-
* {% embed_file templates/date-header/app.module.ts %}
|
|
632
|
-
* {% embed_file shared/main.ts %}
|
|
633
|
-
* {% embed_file shared/events-utc.ts %}
|
|
634
|
-
* {% endmeta %}
|
|
635
592
|
*/
|
|
636
593
|
class DateHeaderTemplateDirective {
|
|
637
594
|
constructor(templateRef) {
|
|
@@ -652,18 +609,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
652
609
|
/**
|
|
653
610
|
* Represents the template for and assists the content customization of the Scheduler events.
|
|
654
611
|
* To define the event template, nest an `<ng-template>` tag with the `kendoSchedulerEventTemplate`
|
|
655
|
-
* directive inside the `<kendo-scheduler>`, or in the view components.
|
|
612
|
+
* directive inside the `<kendo-scheduler>`, or in the view components ([see example](slug:templates_scheduler#toc-event-rendering)).
|
|
656
613
|
*
|
|
657
614
|
* The available fields in the template context are:
|
|
658
615
|
* - `event`—The event that is associated with the item.
|
|
659
616
|
* - `resources`—The resources of the event.
|
|
660
|
-
*
|
|
661
|
-
* {% meta height:500 %}
|
|
662
|
-
* {% embed_file templates/event/app.component.ts preview %}
|
|
663
|
-
* {% embed_file templates/event/app.module.ts %}
|
|
664
|
-
* {% embed_file shared/main.ts %}
|
|
665
|
-
* {% embed_file shared/events-utc.ts %}
|
|
666
|
-
* {% endmeta %}
|
|
667
617
|
*/
|
|
668
618
|
class EventTemplateDirective {
|
|
669
619
|
constructor(templateRef) {
|
|
@@ -685,17 +635,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
685
635
|
* Represents the template which renders the resource group header in the **Day**, **Week**, and **Timeline** views.
|
|
686
636
|
* To define the template, nest an `<ng-template>` tag with the `kendoSchedulerGroupHeaderTemplate`
|
|
687
637
|
* directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-day-view>`, `<kendo-scheduler-week-view>`,
|
|
688
|
-
* `<kendo-scheduler-timeline-view>`, `<kendo-scheduler-timeline-week-view>`, and `<kendo-scheduler-timeline-month-view>` components.
|
|
638
|
+
* `<kendo-scheduler-timeline-view>`, `<kendo-scheduler-timeline-week-view>`, and `<kendo-scheduler-timeline-month-view>` components ([see example](slug:templates_scheduler#toc-group-headers)).
|
|
689
639
|
*
|
|
690
640
|
* The available fields in the template context are:
|
|
691
641
|
* - `resource`—The resource item.
|
|
692
|
-
*
|
|
693
|
-
* {% meta height:500 %}
|
|
694
|
-
* {% embed_file templates/group-header/app.component.ts preview %}
|
|
695
|
-
* {% embed_file templates/group-header/app.module.ts %}
|
|
696
|
-
* {% embed_file shared/main.ts %}
|
|
697
|
-
* {% embed_file shared/events-utc.ts %}
|
|
698
|
-
* {% endmeta %}
|
|
699
642
|
*/
|
|
700
643
|
class GroupHeaderTemplateDirective {
|
|
701
644
|
constructor(templateRef) {
|
|
@@ -716,17 +659,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
716
659
|
/**
|
|
717
660
|
* Represents the template for the major-time headers in the **Day** and **Week** views.
|
|
718
661
|
* To define the major-time header template, nest an `<ng-template>` tag with the `kendoSchedulerMajorTimeHeaderTemplate`
|
|
719
|
-
* directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-day-view>` and `<kendo-scheduler-week-view>` components.
|
|
662
|
+
* directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-day-view>` and `<kendo-scheduler-week-view>` components ([see example](slug:templates_scheduler#toc-major-time-headers)).
|
|
720
663
|
*
|
|
721
664
|
* The available fields in the template context are:
|
|
722
665
|
* - `date`—The date of the header.
|
|
723
|
-
*
|
|
724
|
-
* {% meta height:500 %}
|
|
725
|
-
* {% embed_file templates/major-header/app.component.ts preview %}
|
|
726
|
-
* {% embed_file templates/major-header/app.module.ts %}
|
|
727
|
-
* {% embed_file shared/main.ts %}
|
|
728
|
-
* {% embed_file shared/events-utc.ts %}
|
|
729
|
-
* {% endmeta %}
|
|
730
666
|
*/
|
|
731
667
|
class MajorTimeHeaderTemplateDirective {
|
|
732
668
|
constructor(templateRef) {
|
|
@@ -747,17 +683,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
747
683
|
/**
|
|
748
684
|
* Represents the template for the minor-time headers in the **Day** and **Week** views.
|
|
749
685
|
* To define the minor-time header template, nest an `<ng-template>` tag with the `kendoSchedulerMinorTimeHeaderTemplate`
|
|
750
|
-
* directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-day-view>` and `<kendo-scheduler-week-view>` components.
|
|
686
|
+
* directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-day-view>` and `<kendo-scheduler-week-view>` components ([see example](slug:templates_scheduler#toc-minor-time-headers)).
|
|
751
687
|
*
|
|
752
688
|
* The available fields in the template context are:
|
|
753
689
|
* - `date`—The date of the header.
|
|
754
|
-
*
|
|
755
|
-
* {% meta height:500 %}
|
|
756
|
-
* {% embed_file templates/minor-header/app.component.ts preview %}
|
|
757
|
-
* {% embed_file templates/minor-header/app.module.ts %}
|
|
758
|
-
* {% embed_file shared/main.ts %}
|
|
759
|
-
* {% embed_file shared/events-utc.ts %}
|
|
760
|
-
* {% endmeta %}
|
|
761
690
|
*/
|
|
762
691
|
class MinorTimeHeaderTemplateDirective {
|
|
763
692
|
constructor(templateRef) {
|
|
@@ -778,18 +707,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
778
707
|
/**
|
|
779
708
|
* Represents the template for rendering the day slots in the **Month** view.
|
|
780
709
|
* To define the day template, nest an `<ng-template>` tag with the `kendoSchedulerMonthDaySlotTemplate`
|
|
781
|
-
* directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-month-view>` component.
|
|
710
|
+
* directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-month-view>` component ([see example](slug:templates_scheduler#toc-month-slots)).
|
|
782
711
|
*
|
|
783
712
|
* The available fields in the template context are:
|
|
784
713
|
* - `date`—The date of the slot.
|
|
785
714
|
* - `resources`—The resources of the slot.
|
|
786
|
-
*
|
|
787
|
-
* {% meta height:500 %}
|
|
788
|
-
* {% embed_file templates/month-slot/app.component.ts preview %}
|
|
789
|
-
* {% embed_file templates/month-slot/app.module.ts %}
|
|
790
|
-
* {% embed_file shared/main.ts %}
|
|
791
|
-
* {% embed_file shared/events-utc.ts %}
|
|
792
|
-
* {% endmeta %}
|
|
793
715
|
*/
|
|
794
716
|
class MonthDaySlotTemplateDirective {
|
|
795
717
|
constructor(templateRef) {
|
|
@@ -810,7 +732,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
810
732
|
/**
|
|
811
733
|
* Represents the template for rendering the day slots in the **Month** view.
|
|
812
734
|
* To define the day template, nest an `<ng-template>` tag with the `kendoSchedulerMultiWeekDaySlotTemplate`
|
|
813
|
-
* directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-month-view>` component.
|
|
735
|
+
* directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-month-view>` component ([see example](slug:templates_scheduler#toc-multi-week-slots)).
|
|
814
736
|
*
|
|
815
737
|
* The available fields in the template context are:
|
|
816
738
|
* - `date`—The date of the slot.
|
|
@@ -837,18 +759,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
837
759
|
* Represents the template for the time-slot renderer in the **Day**, **Week**, and **Timeline** views.
|
|
838
760
|
* To define the time-slot template, nest an `<ng-template>` tag with the `kendoSchedulerTimeSlotTemplate`
|
|
839
761
|
* directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-day-view>`, `<kendo-scheduler-week-view>`,
|
|
840
|
-
* `<kendo-scheduler-timeline-view>`, `<kendo-scheduler-timeline-week-view>`, and `<kendo-scheduler-timeline-month-view>` components.
|
|
762
|
+
* `<kendo-scheduler-timeline-view>`, `<kendo-scheduler-timeline-week-view>`, and `<kendo-scheduler-timeline-month-view>` components ([see example](slug:templates_scheduler#toc-time-slots)).
|
|
841
763
|
*
|
|
842
764
|
* The available fields in the template context are:
|
|
843
765
|
* - `date`—The date of the slot.
|
|
844
766
|
* - `resources`—The resources of the slot.
|
|
845
|
-
*
|
|
846
|
-
* {% meta height:500 %}
|
|
847
|
-
* {% embed_file templates/time-slot/app.component.ts preview %}
|
|
848
|
-
* {% embed_file templates/time-slot/app.module.ts %}
|
|
849
|
-
* {% embed_file shared/main.ts %}
|
|
850
|
-
* {% embed_file shared/events-utc.ts %}
|
|
851
|
-
* {% endmeta %}
|
|
852
767
|
*/
|
|
853
768
|
class TimeSlotTemplateDirective {
|
|
854
769
|
constructor(templateRef) {
|
|
@@ -1406,7 +1321,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1406
1321
|
/**
|
|
1407
1322
|
* Represents the template for the edit dialog of the Scheduler.
|
|
1408
1323
|
* To define the template, nest an `<ng-template>` tag
|
|
1409
|
-
* with the `kendoSchedulerEditDialogTemplate` directive inside the `<kendo-scheduler>` tag.
|
|
1324
|
+
* with the `kendoSchedulerEditDialogTemplate` directive inside the `<kendo-scheduler>` tag ([see example](slug:custom_reactive_editing_scheduler)).
|
|
1410
1325
|
*
|
|
1411
1326
|
* The template context is set to the current event and then the following additional fields are passed:
|
|
1412
1327
|
* - `event`—The currently edited event. Represents the default context that will be assigned to any template variable which utilizes the `let-x` syntax—for example, `let-event`.
|
|
@@ -7748,17 +7663,10 @@ const occurrences = (item, fields, range, timezone, weekStart) => {
|
|
|
7748
7663
|
return [item, ...expanded];
|
|
7749
7664
|
};
|
|
7750
7665
|
/**
|
|
7751
|
-
* A directive that processes Scheduler events in-memory.
|
|
7666
|
+
* A directive that processes Scheduler events in-memory ([see example](slug:databinding_scheduler#toc-using-the-built-in-directive)).
|
|
7752
7667
|
*
|
|
7753
7668
|
* Processing includes the expanding of recurring events and the filtering of data for
|
|
7754
7669
|
* the currently active period.
|
|
7755
|
-
*
|
|
7756
|
-
* {% meta height:650 %}
|
|
7757
|
-
* {% embed_file overview/app.component.ts preview %}
|
|
7758
|
-
* {% embed_file shared/app.module.ts %}
|
|
7759
|
-
* {% embed_file shared/main.ts %}
|
|
7760
|
-
* {% embed_file shared/events-utc.ts %}
|
|
7761
|
-
* {% endmeta %}
|
|
7762
7670
|
*/
|
|
7763
7671
|
class DataBindingDirective {
|
|
7764
7672
|
constructor(scheduler, changeDetector, intl, localDataChangesService) {
|
|
@@ -15154,7 +15062,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
15154
15062
|
|
|
15155
15063
|
// eslint-disable no-input-rename
|
|
15156
15064
|
/**
|
|
15157
|
-
* A directive selector for a custom Scheduler view
|
|
15065
|
+
* A directive selector for a custom Scheduler view.
|
|
15158
15066
|
*/
|
|
15159
15067
|
class SchedulerViewDirective extends SchedulerView {
|
|
15160
15068
|
constructor(template) {
|
|
@@ -16471,7 +16379,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16471
16379
|
|
|
16472
16380
|
/**
|
|
16473
16381
|
* A directive which encapsulates the editing operations when the Scheduler
|
|
16474
|
-
* uses the [Reactive Angular Forms](link:site.data.urls.angular['reactiveforms']).
|
|
16382
|
+
* uses the [Reactive Angular Forms](link:site.data.urls.angular['reactiveforms']) ([see example](slug:editing_directives_scheduler)).
|
|
16475
16383
|
*/
|
|
16476
16384
|
class ReactiveEditingDirective extends EditingDirectiveBase {
|
|
16477
16385
|
constructor(scheduler, localDataChangesService, dialogsService, focusService) {
|
|
@@ -16931,31 +16839,19 @@ const importedKendoModules = [
|
|
|
16931
16839
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
16932
16840
|
* definition for the Scheduler component.
|
|
16933
16841
|
*
|
|
16934
|
-
*
|
|
16935
|
-
* ```ts-no-run
|
|
16936
|
-
* import { BrowserModule } from '@angular/platform-browser';
|
|
16842
|
+
* ```ts
|
|
16937
16843
|
* import { NgModule } from '@angular/core';
|
|
16938
|
-
*
|
|
16939
|
-
* // Import the Scheduler module
|
|
16844
|
+
* import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
16940
16845
|
* import { SchedulerModule } from '@progress/kendo-angular-scheduler';
|
|
16941
|
-
*
|
|
16942
16846
|
* import { AppComponent } from './app.component';
|
|
16943
16847
|
*
|
|
16944
|
-
*
|
|
16945
|
-
* declarations: [
|
|
16946
|
-
*
|
|
16947
|
-
* ]
|
|
16948
|
-
* imports: [
|
|
16949
|
-
* BrowserModule,
|
|
16950
|
-
*
|
|
16951
|
-
* // Import the Scheduler module
|
|
16952
|
-
* SchedulerModule
|
|
16953
|
-
* ],
|
|
16954
|
-
* bootstrap: [
|
|
16955
|
-
* AppComponent
|
|
16956
|
-
* ]
|
|
16848
|
+
* @NgModule({
|
|
16849
|
+
* declarations: [AppComponent],
|
|
16850
|
+
* imports: [BrowserModule, SchedulerModule],
|
|
16851
|
+
* bootstrap: [AppComponent]
|
|
16957
16852
|
* })
|
|
16958
|
-
*
|
|
16853
|
+
*
|
|
16854
|
+
* export class AppModule {}
|
|
16959
16855
|
* ```
|
|
16960
16856
|
*/
|
|
16961
16857
|
class SchedulerModule {
|
|
@@ -17530,14 +17426,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17530
17426
|
* [`pdfExport`]({% slug api_scheduler_schedulercomponent %}#toc-pdfexport) event
|
|
17531
17427
|
* fires ([see example]({% slug pdfexport_scheduler %})).
|
|
17532
17428
|
*
|
|
17533
|
-
*
|
|
17534
|
-
* ```html-no-run
|
|
17429
|
+
* ```html
|
|
17535
17430
|
* <kendo-scheduler>
|
|
17536
17431
|
* <ng-template kendoSchedulerToolbarTemplate>
|
|
17537
17432
|
* <button kendoSchedulerPDFCommand>Export PDF</button>
|
|
17538
|
-
* <div kendoSchedulerToolbarNavigation></div>
|
|
17539
|
-
* <span class="k-spacer"></span>
|
|
17540
|
-
* <div kendoSchedulerToolbarViewSelector></div>
|
|
17541
17433
|
* </ng-template>
|
|
17542
17434
|
* <kendo-scheduler-pdf fileName="Scheduler.pdf">
|
|
17543
17435
|
* </kendo-scheduler-pdf>
|
|
@@ -17604,31 +17496,19 @@ const declarations = [
|
|
|
17604
17496
|
* Represents the [NgModule](https://angular.io/api/core/NgModule)
|
|
17605
17497
|
* definition for the Scheduler PDF component.
|
|
17606
17498
|
*
|
|
17607
|
-
*
|
|
17608
|
-
*
|
|
17609
|
-
* ```ts-no-run
|
|
17610
|
-
* // Import the Scheduler and PDF modules
|
|
17611
|
-
* import { SchedulerModule, PDFModule } from '@progress/kendo-angular-scheduler';
|
|
17612
|
-
*
|
|
17613
|
-
* // The browser platform with a compiler
|
|
17614
|
-
* import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
17615
|
-
*
|
|
17499
|
+
* ```ts
|
|
17616
17500
|
* import { NgModule } from '@angular/core';
|
|
17617
|
-
*
|
|
17618
|
-
*
|
|
17501
|
+
* import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
17502
|
+
* import { SchedulerModule, PDFModule } from '@progress/kendo-angular-scheduler';
|
|
17619
17503
|
* import { AppComponent } from './app.component';
|
|
17620
17504
|
*
|
|
17621
|
-
*
|
|
17622
|
-
*
|
|
17623
|
-
*
|
|
17624
|
-
* imports: [BrowserModule, SchedulerModule, PDFModule], // import Scheduler and PDF modules
|
|
17505
|
+
* @NgModule({
|
|
17506
|
+
* declarations: [AppComponent],
|
|
17507
|
+
* imports: [BrowserModule, SchedulerModule, PDFModule],
|
|
17625
17508
|
* bootstrap: [AppComponent]
|
|
17626
17509
|
* })
|
|
17627
|
-
* export class AppModule {}
|
|
17628
|
-
*
|
|
17629
|
-
* // Compile and launch the module
|
|
17630
|
-
* platformBrowserDynamic().bootstrapModule(AppModule);
|
|
17631
17510
|
*
|
|
17511
|
+
* export class AppModule {}
|
|
17632
17512
|
* ```
|
|
17633
17513
|
*/
|
|
17634
17514
|
class PDFModule {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-scheduler",
|
|
3
|
-
"version": "13.4.1-develop.
|
|
3
|
+
"version": "13.4.1-develop.2",
|
|
4
4
|
"description": "Kendo UI Scheduler Angular - Outlook or Google-style angular scheduler calendar. Full-featured and customizable embedded scheduling from the creator developers trust for professional UI components.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -25,21 +25,21 @@
|
|
|
25
25
|
"@progress/kendo-data-query": "^1.0.0",
|
|
26
26
|
"@progress/kendo-drawing": "^1.17.2",
|
|
27
27
|
"@progress/kendo-licensing": "^1.0.2",
|
|
28
|
-
"@progress/kendo-angular-buttons": "13.4.1-develop.
|
|
29
|
-
"@progress/kendo-angular-common": "13.4.1-develop.
|
|
30
|
-
"@progress/kendo-angular-dateinputs": "13.4.1-develop.
|
|
31
|
-
"@progress/kendo-angular-dialog": "13.4.1-develop.
|
|
32
|
-
"@progress/kendo-angular-dropdowns": "13.4.1-develop.
|
|
33
|
-
"@progress/kendo-angular-icons": "13.4.1-develop.
|
|
34
|
-
"@progress/kendo-angular-inputs": "13.4.1-develop.
|
|
35
|
-
"@progress/kendo-angular-intl": "13.4.1-develop.
|
|
36
|
-
"@progress/kendo-angular-l10n": "13.4.1-develop.
|
|
37
|
-
"@progress/kendo-angular-popup": "13.4.1-develop.
|
|
28
|
+
"@progress/kendo-angular-buttons": "13.4.1-develop.2",
|
|
29
|
+
"@progress/kendo-angular-common": "13.4.1-develop.2",
|
|
30
|
+
"@progress/kendo-angular-dateinputs": "13.4.1-develop.2",
|
|
31
|
+
"@progress/kendo-angular-dialog": "13.4.1-develop.2",
|
|
32
|
+
"@progress/kendo-angular-dropdowns": "13.4.1-develop.2",
|
|
33
|
+
"@progress/kendo-angular-icons": "13.4.1-develop.2",
|
|
34
|
+
"@progress/kendo-angular-inputs": "13.4.1-develop.2",
|
|
35
|
+
"@progress/kendo-angular-intl": "13.4.1-develop.2",
|
|
36
|
+
"@progress/kendo-angular-l10n": "13.4.1-develop.2",
|
|
37
|
+
"@progress/kendo-angular-popup": "13.4.1-develop.2",
|
|
38
38
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"tslib": "^2.3.1",
|
|
42
|
-
"@progress/kendo-angular-schematics": "13.4.1-develop.
|
|
42
|
+
"@progress/kendo-angular-schematics": "13.4.1-develop.2",
|
|
43
43
|
"@progress/kendo-date-math": "^1.3.2",
|
|
44
44
|
"@progress/kendo-draggable": "^3.0.2",
|
|
45
45
|
"@progress/kendo-file-saver": "^1.0.7",
|
|
@@ -15,14 +15,10 @@ import * as i0 from "@angular/core";
|
|
|
15
15
|
* [`pdfExport`]({% slug api_scheduler_schedulercomponent %}#toc-pdfexport) event
|
|
16
16
|
* fires ([see example]({% slug pdfexport_scheduler %})).
|
|
17
17
|
*
|
|
18
|
-
*
|
|
19
|
-
* ```html-no-run
|
|
18
|
+
* ```html
|
|
20
19
|
* <kendo-scheduler>
|
|
21
20
|
* <ng-template kendoSchedulerToolbarTemplate>
|
|
22
21
|
* <button kendoSchedulerPDFCommand>Export PDF</button>
|
|
23
|
-
* <div kendoSchedulerToolbarNavigation></div>
|
|
24
|
-
* <span class="k-spacer"></span>
|
|
25
|
-
* <div kendoSchedulerToolbarViewSelector></div>
|
|
26
22
|
* </ng-template>
|
|
27
23
|
* <kendo-scheduler-pdf fileName="Scheduler.pdf">
|
|
28
24
|
* </kendo-scheduler-pdf>
|
package/pdf/pdf.module.d.ts
CHANGED
|
@@ -10,31 +10,19 @@ import * as i3 from "@progress/kendo-angular-icons";
|
|
|
10
10
|
* Represents the [NgModule](https://angular.io/api/core/NgModule)
|
|
11
11
|
* definition for the Scheduler PDF component.
|
|
12
12
|
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
* ```ts-no-run
|
|
16
|
-
* // Import the Scheduler and PDF modules
|
|
17
|
-
* import { SchedulerModule, PDFModule } from '@progress/kendo-angular-scheduler';
|
|
18
|
-
*
|
|
19
|
-
* // The browser platform with a compiler
|
|
20
|
-
* import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
21
|
-
*
|
|
13
|
+
* ```ts
|
|
22
14
|
* import { NgModule } from '@angular/core';
|
|
23
|
-
*
|
|
24
|
-
*
|
|
15
|
+
* import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
16
|
+
* import { SchedulerModule, PDFModule } from '@progress/kendo-angular-scheduler';
|
|
25
17
|
* import { AppComponent } from './app.component';
|
|
26
18
|
*
|
|
27
|
-
*
|
|
28
|
-
*
|
|
29
|
-
*
|
|
30
|
-
* imports: [BrowserModule, SchedulerModule, PDFModule], // import Scheduler and PDF modules
|
|
19
|
+
* @NgModule({
|
|
20
|
+
* declarations: [AppComponent],
|
|
21
|
+
* imports: [BrowserModule, SchedulerModule, PDFModule],
|
|
31
22
|
* bootstrap: [AppComponent]
|
|
32
23
|
* })
|
|
33
|
-
* export class AppModule {}
|
|
34
|
-
*
|
|
35
|
-
* // Compile and launch the module
|
|
36
|
-
* platformBrowserDynamic().bootstrapModule(AppModule);
|
|
37
24
|
*
|
|
25
|
+
* export class AppModule {}
|
|
38
26
|
* ```
|
|
39
27
|
*/
|
|
40
28
|
export declare class PDFModule {
|
package/scheduler.module.d.ts
CHANGED
|
@@ -63,31 +63,19 @@ import * as i56 from "./toolbar/view-selector.component";
|
|
|
63
63
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
64
64
|
* definition for the Scheduler component.
|
|
65
65
|
*
|
|
66
|
-
*
|
|
67
|
-
* ```ts-no-run
|
|
68
|
-
* import { BrowserModule } from '@angular/platform-browser';
|
|
66
|
+
* ```ts
|
|
69
67
|
* import { NgModule } from '@angular/core';
|
|
70
|
-
*
|
|
71
|
-
* // Import the Scheduler module
|
|
68
|
+
* import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
72
69
|
* import { SchedulerModule } from '@progress/kendo-angular-scheduler';
|
|
73
|
-
*
|
|
74
70
|
* import { AppComponent } from './app.component';
|
|
75
71
|
*
|
|
76
|
-
*
|
|
77
|
-
* declarations: [
|
|
78
|
-
*
|
|
79
|
-
* ]
|
|
80
|
-
* imports: [
|
|
81
|
-
* BrowserModule,
|
|
82
|
-
*
|
|
83
|
-
* // Import the Scheduler module
|
|
84
|
-
* SchedulerModule
|
|
85
|
-
* ],
|
|
86
|
-
* bootstrap: [
|
|
87
|
-
* AppComponent
|
|
88
|
-
* ]
|
|
72
|
+
* @NgModule({
|
|
73
|
+
* declarations: [AppComponent],
|
|
74
|
+
* imports: [BrowserModule, SchedulerModule],
|
|
75
|
+
* bootstrap: [AppComponent]
|
|
89
76
|
* })
|
|
90
|
-
*
|
|
77
|
+
*
|
|
78
|
+
* export class AppModule {}
|
|
91
79
|
* ```
|
|
92
80
|
*/
|
|
93
81
|
export declare class SchedulerModule {
|
|
@@ -4,9 +4,9 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'SchedulerModule', package: 'scheduler', peerDependencies: {
|
|
6
6
|
// peer dep of the dropdowns
|
|
7
|
-
'@progress/kendo-angular-treeview': '13.4.1-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '13.4.1-develop.2',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '13.4.1-develop.
|
|
9
|
+
'@progress/kendo-angular-dialog': '13.4.1-develop.2',
|
|
10
10
|
// peer dependency of kendo-angular-icons
|
|
11
11
|
'@progress/kendo-svg-icons': '^1.0.0'
|
|
12
12
|
} });
|
|
@@ -22,14 +22,6 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
*
|
|
23
23
|
* To emit navigation events, the components inside the toolbar can inject
|
|
24
24
|
* the [`ToolbarService`]({% slug api_scheduler_toolbarservice %}).
|
|
25
|
-
*
|
|
26
|
-
* {% meta height:700 %}
|
|
27
|
-
* {% embed_file toolbar/template/app.component.ts preview %}
|
|
28
|
-
* {% embed_file toolbar/template/my-navigation.component.ts %}
|
|
29
|
-
* {% embed_file toolbar/template/app.module.ts %}
|
|
30
|
-
* {% embed_file shared/events-utc.ts %}
|
|
31
|
-
* {% embed_file shared/main.ts %}
|
|
32
|
-
* {% endmeta %}
|
|
33
25
|
*/
|
|
34
26
|
export declare class ToolbarTemplateDirective {
|
|
35
27
|
templateRef: TemplateRef<any>;
|
|
@@ -6,7 +6,7 @@ import { TemplateRef } from '@angular/core';
|
|
|
6
6
|
import { SchedulerView } from '../types';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
|
-
* A directive selector for a custom Scheduler view
|
|
9
|
+
* A directive selector for a custom Scheduler view.
|
|
10
10
|
*/
|
|
11
11
|
export declare class SchedulerViewDirective extends SchedulerView {
|
|
12
12
|
template: TemplateRef<any>;
|
|
@@ -7,17 +7,10 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
/**
|
|
8
8
|
* Represents the template which renders the date header in the **Agenda** view.
|
|
9
9
|
* To define the date template, nest an `<ng-template>` tag with the `kendoSchedulerAgendaDateTemplate`
|
|
10
|
-
* directive inside the `<kendo-scheduler-agenda-view>` or `<kendo-scheduler>` components.
|
|
10
|
+
* directive inside the `<kendo-scheduler-agenda-view>` or `<kendo-scheduler>` components ([see example](slug:templates_scheduler#toc-agenda-dates)).
|
|
11
11
|
*
|
|
12
12
|
* The available fields in the template context are:
|
|
13
13
|
* - `date`—The header date.
|
|
14
|
-
*
|
|
15
|
-
* {% meta height:500 %}
|
|
16
|
-
* {% embed_file templates/agenda-date-header/app.component.ts preview %}
|
|
17
|
-
* {% embed_file templates/agenda-date-header/app.module.ts %}
|
|
18
|
-
* {% embed_file shared/main.ts %}
|
|
19
|
-
* {% embed_file shared/events-utc.ts %}
|
|
20
|
-
* {% endmeta %}
|
|
21
14
|
*/
|
|
22
15
|
export declare class AgendaDateTemplateDirective {
|
|
23
16
|
templateRef: TemplateRef<any>;
|
|
@@ -7,7 +7,7 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
/**
|
|
8
8
|
* Represents the template which renders the time header in the **Agenda** view.
|
|
9
9
|
* To define the time template, nest an `<ng-template>` tag with the `kendoSchedulerAgendaTimeTemplate`
|
|
10
|
-
* directive inside the `<kendo-scheduler>` or in the `<kendo-scheduler-agenda-view>` component.
|
|
10
|
+
* directive inside the `<kendo-scheduler>` or in the `<kendo-scheduler-agenda-view>` component ([see example](slug:templates_scheduler#toc-agenda-times)).
|
|
11
11
|
*
|
|
12
12
|
* The available fields in the template context are:
|
|
13
13
|
* - `start`—The start date of the event.
|
|
@@ -16,13 +16,6 @@ import * as i0 from "@angular/core";
|
|
|
16
16
|
* - `description`—The description of the event.
|
|
17
17
|
* - `isAllDay`—A Boolean value which indicates if the event is all-day.
|
|
18
18
|
* - `resources`—The resources of the event.
|
|
19
|
-
*
|
|
20
|
-
* {% meta height:500 %}
|
|
21
|
-
* {% embed_file templates/agenda-time-header/app.component.ts preview %}
|
|
22
|
-
* {% embed_file templates/agenda-time-header/app.module.ts %}
|
|
23
|
-
* {% embed_file shared/main.ts %}
|
|
24
|
-
* {% embed_file shared/events-utc.ts %}
|
|
25
|
-
* {% endmeta %}
|
|
26
19
|
*/
|
|
27
20
|
export declare class AgendaTimeTemplateDirective {
|
|
28
21
|
templateRef: TemplateRef<any>;
|
|
@@ -7,18 +7,11 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
/**
|
|
8
8
|
* Represents the template for and assists the content customization of all-day events.
|
|
9
9
|
* To define the all-day event template, nest an `<ng-template>` tag with the `kendoSchedulerAllDayEventTemplate`
|
|
10
|
-
* directive inside the `<kendo-scheduler>`, `<kendo-scheduler-day-view>`, or
|
|
10
|
+
* directive inside the `<kendo-scheduler>`, `<kendo-scheduler-day-view>`, or `<kendo-scheduler-week-view>` component ([see example](slug:templates_scheduler#toc-all-day-events)).
|
|
11
11
|
*
|
|
12
12
|
* The available fields in the template context are:
|
|
13
13
|
* - `event`—The event that is associated with the item.
|
|
14
14
|
* - `resources`—The resources of the event.
|
|
15
|
-
*
|
|
16
|
-
* {% meta height:500 %}
|
|
17
|
-
* {% embed_file templates/all-day-event/app.component.ts preview %}
|
|
18
|
-
* {% embed_file templates/all-day-event/app.module.ts %}
|
|
19
|
-
* {% embed_file shared/main.ts %}
|
|
20
|
-
* {% embed_file shared/events-utc.ts %}
|
|
21
|
-
* {% endmeta %}
|
|
22
15
|
*/
|
|
23
16
|
export declare class AllDayEventTemplateDirective {
|
|
24
17
|
templateRef: TemplateRef<any>;
|
|
@@ -7,18 +7,11 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
/**
|
|
8
8
|
* Represents the template for and assists the content customization of all-day slots.
|
|
9
9
|
* To define the all-day slot template, nest an `<ng-template>` tag with the `kendoSchedulerAllDaySlotTemplate`
|
|
10
|
-
* directive inside the `<kendo-scheduler>`, `<kendo-scheduler-day-view>`, or
|
|
10
|
+
* directive inside the `<kendo-scheduler>`, `<kendo-scheduler-day-view>`, or `<kendo-scheduler-week-view>` component ([see example](slug:templates_scheduler#toc-all-day-slots)).
|
|
11
11
|
*
|
|
12
12
|
* The available fields in the template context are:
|
|
13
13
|
* - `date`—The date of the slot.
|
|
14
14
|
* - `resources`—The resources of the slot.
|
|
15
|
-
*
|
|
16
|
-
* {% meta height:500 %}
|
|
17
|
-
* {% embed_file templates/all-day-slot/app.component.ts preview %}
|
|
18
|
-
* {% embed_file templates/all-day-slot/app.module.ts %}
|
|
19
|
-
* {% embed_file shared/main.ts %}
|
|
20
|
-
* {% embed_file shared/events-utc.ts %}
|
|
21
|
-
* {% endmeta %}
|
|
22
15
|
*/
|
|
23
16
|
export declare class AllDaySlotTemplateDirective {
|
|
24
17
|
templateRef: TemplateRef<any>;
|