@progress/kendo-angular-scheduler 13.4.1-develop.1 → 13.4.1-develop.3
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
|
@@ -8,17 +8,10 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
* Represents the template which renders the date header in the **Day**, **Week**, and **Timeline** views.
|
|
9
9
|
* To define the day template, nest an `<ng-template>` tag with the `kendoSchedulerDateHeaderTemplate`
|
|
10
10
|
* directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-day-view>`, `<kendo-scheduler-week-view>`,
|
|
11
|
-
* `<kendo-scheduler-timeline-view>`, `<kendo-scheduler-timeline-week-view>`, and `<kendo-scheduler-timeline-month-view>` components.
|
|
11
|
+
* `<kendo-scheduler-timeline-view>`, `<kendo-scheduler-timeline-week-view>`, and `<kendo-scheduler-timeline-month-view>` components ([see example](slug:templates_scheduler#toc-date-headers)).
|
|
12
12
|
*
|
|
13
13
|
* The available fields in the template context are:
|
|
14
14
|
* - `date`—The header date.
|
|
15
|
-
*
|
|
16
|
-
* {% meta height:500 %}
|
|
17
|
-
* {% embed_file templates/date-header/app.component.ts preview %}
|
|
18
|
-
* {% embed_file templates/date-header/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 DateHeaderTemplateDirective {
|
|
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 the Scheduler events.
|
|
9
9
|
* To define the event template, nest an `<ng-template>` tag with the `kendoSchedulerEventTemplate`
|
|
10
|
-
* directive inside the `<kendo-scheduler>`, or in the view components.
|
|
10
|
+
* directive inside the `<kendo-scheduler>`, or in the view components ([see example](slug:templates_scheduler#toc-event-rendering)).
|
|
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/event/app.component.ts preview %}
|
|
18
|
-
* {% embed_file templates/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 EventTemplateDirective {
|
|
24
17
|
templateRef: TemplateRef<any>;
|
|
@@ -8,17 +8,10 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
* Represents the template which renders the resource group header in the **Day**, **Week**, and **Timeline** views.
|
|
9
9
|
* To define the template, nest an `<ng-template>` tag with the `kendoSchedulerGroupHeaderTemplate`
|
|
10
10
|
* directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-day-view>`, `<kendo-scheduler-week-view>`,
|
|
11
|
-
* `<kendo-scheduler-timeline-view>`, `<kendo-scheduler-timeline-week-view>`, and `<kendo-scheduler-timeline-month-view>` components.
|
|
11
|
+
* `<kendo-scheduler-timeline-view>`, `<kendo-scheduler-timeline-week-view>`, and `<kendo-scheduler-timeline-month-view>` components ([see example](slug:templates_scheduler#toc-group-headers)).
|
|
12
12
|
*
|
|
13
13
|
* The available fields in the template context are:
|
|
14
14
|
* - `resource`—The resource item.
|
|
15
|
-
*
|
|
16
|
-
* {% meta height:500 %}
|
|
17
|
-
* {% embed_file templates/group-header/app.component.ts preview %}
|
|
18
|
-
* {% embed_file templates/group-header/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 GroupHeaderTemplateDirective {
|
|
24
17
|
templateRef: TemplateRef<any>;
|
|
@@ -7,17 +7,10 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
/**
|
|
8
8
|
* Represents the template for the major-time headers in the **Day** and **Week** views.
|
|
9
9
|
* To define the major-time header template, nest an `<ng-template>` tag with the `kendoSchedulerMajorTimeHeaderTemplate`
|
|
10
|
-
* directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-day-view>` and `<kendo-scheduler-week-view>` components.
|
|
10
|
+
* 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)).
|
|
11
11
|
*
|
|
12
12
|
* The available fields in the template context are:
|
|
13
13
|
* - `date`—The date of the header.
|
|
14
|
-
*
|
|
15
|
-
* {% meta height:500 %}
|
|
16
|
-
* {% embed_file templates/major-header/app.component.ts preview %}
|
|
17
|
-
* {% embed_file templates/major-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 MajorTimeHeaderTemplateDirective {
|
|
23
16
|
templateRef: TemplateRef<any>;
|
|
@@ -7,17 +7,10 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
/**
|
|
8
8
|
* Represents the template for the minor-time headers in the **Day** and **Week** views.
|
|
9
9
|
* To define the minor-time header template, nest an `<ng-template>` tag with the `kendoSchedulerMinorTimeHeaderTemplate`
|
|
10
|
-
* directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-day-view>` and `<kendo-scheduler-week-view>` components.
|
|
10
|
+
* 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)).
|
|
11
11
|
*
|
|
12
12
|
* The available fields in the template context are:
|
|
13
13
|
* - `date`—The date of the header.
|
|
14
|
-
*
|
|
15
|
-
* {% meta height:500 %}
|
|
16
|
-
* {% embed_file templates/minor-header/app.component.ts preview %}
|
|
17
|
-
* {% embed_file templates/minor-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 MinorTimeHeaderTemplateDirective {
|
|
23
16
|
templateRef: TemplateRef<any>;
|
|
@@ -7,18 +7,11 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
/**
|
|
8
8
|
* Represents the template for rendering the day slots in the **Month** view.
|
|
9
9
|
* To define the day template, nest an `<ng-template>` tag with the `kendoSchedulerMonthDaySlotTemplate`
|
|
10
|
-
* directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-month-view>` component.
|
|
10
|
+
* directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-month-view>` component ([see example](slug:templates_scheduler#toc-month-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/month-slot/app.component.ts preview %}
|
|
18
|
-
* {% embed_file templates/month-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 MonthDaySlotTemplateDirective {
|
|
24
17
|
templateRef: TemplateRef<any>;
|
|
@@ -7,7 +7,7 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
/**
|
|
8
8
|
* Represents the template for rendering the day slots in the **Month** view.
|
|
9
9
|
* To define the day template, nest an `<ng-template>` tag with the `kendoSchedulerMultiWeekDaySlotTemplate`
|
|
10
|
-
* directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-month-view>` component.
|
|
10
|
+
* directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-month-view>` component ([see example](slug:templates_scheduler#toc-multi-week-slots)).
|
|
11
11
|
*
|
|
12
12
|
* The available fields in the template context are:
|
|
13
13
|
* - `date`—The date of the slot.
|
|
@@ -8,18 +8,11 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
* Represents the template for the time-slot renderer in the **Day**, **Week**, and **Timeline** views.
|
|
9
9
|
* To define the time-slot template, nest an `<ng-template>` tag with the `kendoSchedulerTimeSlotTemplate`
|
|
10
10
|
* directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-day-view>`, `<kendo-scheduler-week-view>`,
|
|
11
|
-
* `<kendo-scheduler-timeline-view>`, `<kendo-scheduler-timeline-week-view>`, and `<kendo-scheduler-timeline-month-view>` components.
|
|
11
|
+
* `<kendo-scheduler-timeline-view>`, `<kendo-scheduler-timeline-week-view>`, and `<kendo-scheduler-timeline-month-view>` components ([see example](slug:templates_scheduler#toc-time-slots)).
|
|
12
12
|
*
|
|
13
13
|
* The available fields in the template context are:
|
|
14
14
|
* - `date`—The date of the slot.
|
|
15
15
|
* - `resources`—The resources of the slot.
|
|
16
|
-
*
|
|
17
|
-
* {% meta height:500 %}
|
|
18
|
-
* {% embed_file templates/time-slot/app.component.ts preview %}
|
|
19
|
-
* {% embed_file templates/time-slot/app.module.ts %}
|
|
20
|
-
* {% embed_file shared/main.ts %}
|
|
21
|
-
* {% embed_file shared/events-utc.ts %}
|
|
22
|
-
* {% endmeta %}
|
|
23
16
|
*/
|
|
24
17
|
export declare class TimeSlotTemplateDirective {
|
|
25
18
|
templateRef: TemplateRef<any>;
|