@progress/kendo-angular-scheduler 13.4.1-develop.2 → 13.4.1-develop.4
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/editing/recurrence/recurrence-editor.component.d.ts +1 -0
- package/editing/timezone-editor.component.d.ts +1 -0
- package/editing-directives/edit-service.interface.d.ts +1 -2
- package/esm2020/editing/recurrence/recurrence-editor.component.mjs +1 -0
- package/esm2020/editing/timezone-editor.component.mjs +1 -0
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/pdf/pdf.component.mjs +1 -1
- package/esm2020/scheduler.component.mjs +16 -39
- package/esm2020/toolbar/navigation.component.mjs +0 -8
- package/esm2020/toolbar/view-selector.component.mjs +0 -8
- package/esm2020/types/crud-operation.enum.mjs +6 -4
- package/esm2020/types/edit-mode.enum.mjs +9 -5
- package/esm2020/views/agenda/agenda-view.component.mjs +3 -1
- package/esm2020/views/month/month-view.component.mjs +4 -3
- package/esm2020/views/month/multi-week-view.component.mjs +3 -3
- package/esm2020/views/multi-day/day-view.component.mjs +4 -3
- package/esm2020/views/multi-day/multi-day-view.component.mjs +5 -2
- package/esm2020/views/multi-day/week-view.component.mjs +4 -1
- package/esm2020/views/multi-day/work-week-view.component.mjs +2 -1
- package/esm2020/views/timeline/timeline-month-view.component.mjs +4 -3
- package/esm2020/views/timeline/timeline-view.component.mjs +4 -3
- package/esm2020/views/timeline/timeline-week-view.component.mjs +4 -1
- package/fesm2015/progress-kendo-angular-scheduler.mjs +73 -88
- package/fesm2020/progress-kendo-angular-scheduler.mjs +73 -88
- package/localization/messages.d.ts +1 -1
- package/package.json +12 -12
- package/pdf/pdf.component.d.ts +5 -12
- package/scheduler.component.d.ts +20 -149
- package/schematics/ngAdd/index.js +2 -2
- package/toolbar/navigation.component.d.ts +0 -8
- package/toolbar/view-selector.component.d.ts +0 -8
- package/types/crud-operation.enum.d.ts +6 -4
- package/types/datepicker-options.interface.d.ts +26 -27
- package/types/edit-mode.enum.d.ts +9 -5
- package/types/editable-settings.interface.d.ts +2 -2
- package/types/view-item.interface.d.ts +12 -0
- package/views/agenda/agenda-view.component.d.ts +3 -1
- package/views/day-time/day-time-view-base.d.ts +1 -0
- package/views/month/month-view.component.d.ts +4 -3
- package/views/month/multi-week-view.component.d.ts +3 -3
- package/views/multi-day/day-view.component.d.ts +4 -3
- package/views/multi-day/multi-day-view-base.d.ts +1 -1
- package/views/multi-day/multi-day-view.component.d.ts +5 -2
- package/views/multi-day/week-view.component.d.ts +4 -1
- package/views/multi-day/work-week-view.component.d.ts +2 -1
- package/views/timeline/timeline-month-view.component.d.ts +4 -3
- package/views/timeline/timeline-view.component.d.ts +4 -3
- package/views/timeline/timeline-week-view.component.d.ts +4 -1
|
@@ -17,6 +17,7 @@ export declare class MultiDayViewComponent extends DayViewComponent {
|
|
|
17
17
|
* selected date in the Scheduler toolbar.
|
|
18
18
|
* Defaults to `{0:D} - {1:D}` for multiple days and `{0:D}` for a single day
|
|
19
19
|
* ([more information](slug:parsingandformatting_intl#toc-date-formatting)).
|
|
20
|
+
* @default '{0:D} - {1:D}'
|
|
20
21
|
*/
|
|
21
22
|
set selectedDateFormat(value: string);
|
|
22
23
|
get selectedDateFormat(): string;
|
|
@@ -25,12 +26,13 @@ export declare class MultiDayViewComponent extends DayViewComponent {
|
|
|
25
26
|
* selected date in the Scheduler toolbar.
|
|
26
27
|
* Defaults to `{0:d} - {1:d}` for multiple days and `{0:d}` for a single day
|
|
27
28
|
* ([more information](slug:parsingandformatting_intl#toc-date-formatting)).
|
|
29
|
+
* @default '{0:d} - {1:d}'
|
|
28
30
|
*/
|
|
29
31
|
set selectedShortDateFormat(value: string);
|
|
30
32
|
get selectedShortDateFormat(): string;
|
|
31
33
|
/**
|
|
32
34
|
* Specifies the number of days that the view will render.
|
|
33
|
-
*
|
|
35
|
+
* @default 1
|
|
34
36
|
*/
|
|
35
37
|
numberOfDays: number;
|
|
36
38
|
/**
|
|
@@ -38,7 +40,8 @@ export declare class MultiDayViewComponent extends DayViewComponent {
|
|
|
38
40
|
*/
|
|
39
41
|
get title(): string;
|
|
40
42
|
/**
|
|
41
|
-
* The invariant name for this view
|
|
43
|
+
* The invariant name for this view.
|
|
44
|
+
* @default 'multi-day'
|
|
42
45
|
*/
|
|
43
46
|
readonly name: string;
|
|
44
47
|
private get defaultDateFormat();
|
|
@@ -25,6 +25,7 @@ export declare class WeekViewComponent extends MultiDayViewBase {
|
|
|
25
25
|
* Defaults to `{0:D} - {1:D}`,
|
|
26
26
|
* where `0` is the start and `1` is the end date
|
|
27
27
|
* ([more information]({% slug parsingandformatting_intl %}#toc-date-formatting).
|
|
28
|
+
* @default '{0:D} - {1:D}'
|
|
28
29
|
*/
|
|
29
30
|
selectedDateFormat: string;
|
|
30
31
|
/**
|
|
@@ -33,6 +34,7 @@ export declare class WeekViewComponent extends MultiDayViewBase {
|
|
|
33
34
|
* Defaults to `{0:d} - {1:d}`,
|
|
34
35
|
* where `0` is the start and `1` is the end date
|
|
35
36
|
* ([more information]({% slug parsingandformatting_intl %}#toc-date-formatting).
|
|
37
|
+
* @default '{0:d} - {1:d}'
|
|
36
38
|
*/
|
|
37
39
|
selectedShortDateFormat: string;
|
|
38
40
|
/**
|
|
@@ -52,7 +54,8 @@ export declare class WeekViewComponent extends MultiDayViewBase {
|
|
|
52
54
|
*/
|
|
53
55
|
majorTimeHeaderTemplate: MajorTimeHeaderTemplateDirective;
|
|
54
56
|
/**
|
|
55
|
-
* The invariant name for this view
|
|
57
|
+
* The invariant name for this view.
|
|
58
|
+
* @default 'week'
|
|
56
59
|
*/
|
|
57
60
|
readonly name: string;
|
|
58
61
|
constructor(intl: IntlService, localization: LocalizationService, changeDetector: ChangeDetectorRef, viewContext: ViewContextService, viewState: ViewStateService);
|
|
@@ -18,7 +18,8 @@ export declare class WorkWeekViewComponent extends WeekViewComponent {
|
|
|
18
18
|
*/
|
|
19
19
|
get title(): string;
|
|
20
20
|
/**
|
|
21
|
-
* The invariant name for this view
|
|
21
|
+
* The invariant name for this view.
|
|
22
|
+
* @default 'workWeek'
|
|
22
23
|
*/
|
|
23
24
|
readonly name: string;
|
|
24
25
|
/**
|
|
@@ -19,19 +19,20 @@ export declare class TimelineMonthViewComponent extends TimelineBase {
|
|
|
19
19
|
/**
|
|
20
20
|
* The long-date format for displaying the
|
|
21
21
|
* selected date in the Scheduler toolbar.
|
|
22
|
-
* Defaults to `{0:Y}`
|
|
23
22
|
* ([more information]({% slug parsingandformatting_intl %}#toc-date-formatting)).
|
|
23
|
+
* @default '{0:Y}'
|
|
24
24
|
*/
|
|
25
25
|
selectedDateFormat: string;
|
|
26
26
|
/**
|
|
27
27
|
* The short-date format for displaying the
|
|
28
28
|
* selected date in the Scheduler toolbar.
|
|
29
|
-
* Defaults to `{0:y}`
|
|
30
29
|
* ([more information]({% slug parsingandformatting_intl %}#toc-date-formatting)).
|
|
30
|
+
* @default '{0:y}'
|
|
31
31
|
*/
|
|
32
32
|
selectedShortDateFormat: string;
|
|
33
33
|
/**
|
|
34
|
-
* The invariant name for this view
|
|
34
|
+
* The invariant name for this view.
|
|
35
|
+
* @default 'timelineMonth'
|
|
35
36
|
*/
|
|
36
37
|
readonly name: string;
|
|
37
38
|
/**
|
|
@@ -19,19 +19,20 @@ export declare class TimelineViewComponent extends TimelineBase {
|
|
|
19
19
|
/**
|
|
20
20
|
* The long-date format for displaying the
|
|
21
21
|
* selected date in the Scheduler toolbar.
|
|
22
|
-
* Defaults to `{0:D}`
|
|
23
22
|
* ([more information]({% slug parsingandformatting_intl %}#toc-date-formatting)).
|
|
23
|
+
* @default '{0:D}'
|
|
24
24
|
*/
|
|
25
25
|
selectedDateFormat: string;
|
|
26
26
|
/**
|
|
27
27
|
* The short-date format for displaying the
|
|
28
28
|
* selected date in the Scheduler toolbar.
|
|
29
|
-
* Defaults to `{0:D}`
|
|
30
29
|
* ([more information]({% slug parsingandformatting_intl %}#toc-date-formatting)).
|
|
30
|
+
* @default '{0:d}'
|
|
31
31
|
*/
|
|
32
32
|
selectedShortDateFormat: string;
|
|
33
33
|
/**
|
|
34
|
-
* The invariant name for this view
|
|
34
|
+
* The invariant name for this view.
|
|
35
|
+
* @default 'timeline'
|
|
35
36
|
*/
|
|
36
37
|
readonly name: string;
|
|
37
38
|
constructor(localization: LocalizationService, changeDetector: ChangeDetectorRef, viewContext: ViewContextService, viewState: ViewStateService);
|
|
@@ -23,6 +23,7 @@ export declare class TimelineWeekViewComponent extends TimelineBase {
|
|
|
23
23
|
* Defaults to `{0:D} - {1:D}`
|
|
24
24
|
* where `0` is the start and `1` is the end date
|
|
25
25
|
* ([more information]({% slug parsingandformatting_intl %}#toc-date-formatting)).
|
|
26
|
+
* @default '{0:D} - {1:D}'
|
|
26
27
|
*/
|
|
27
28
|
selectedDateFormat: string;
|
|
28
29
|
/**
|
|
@@ -31,10 +32,12 @@ export declare class TimelineWeekViewComponent extends TimelineBase {
|
|
|
31
32
|
* Defaults to `{0:d} - {1:d}`
|
|
32
33
|
* where `0` is the start and `1` is the end date
|
|
33
34
|
* ([more information]({% slug parsingandformatting_intl %}#toc-date-formatting)).
|
|
35
|
+
* @default '{0:d} - {1:d}'
|
|
34
36
|
*/
|
|
35
37
|
selectedShortDateFormat: string;
|
|
36
38
|
/**
|
|
37
|
-
* The invariant name for this view
|
|
39
|
+
* The invariant name for this view.
|
|
40
|
+
* @default 'timelineWeek'
|
|
38
41
|
*/
|
|
39
42
|
readonly name: string;
|
|
40
43
|
constructor(_intl: IntlService, localization: LocalizationService, changeDetector: ChangeDetectorRef, viewContext: ViewContextService, viewState: ViewStateService);
|