@progress/kendo-angular-scheduler 19.1.2-develop.4 → 19.1.2-develop.6
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 +12 -3
- package/directives.d.ts +42 -2
- package/editing/edit-dialog-template.directive.d.ts +15 -2
- package/editing/recurrence/recurrence-editor.component.d.ts +29 -10
- package/editing/timezone-editor.component.d.ts +13 -3
- package/editing-directives/base-edit.service.d.ts +8 -11
- package/editing-directives/edit-service.interface.d.ts +22 -24
- package/editing-directives/reactive-editing.directive.d.ts +15 -2
- package/esm2022/data-binding.directive.mjs +12 -3
- package/esm2022/directives.mjs +42 -2
- package/esm2022/editing/edit-dialog-template.directive.mjs +15 -2
- package/esm2022/editing/recurrence/recurrence-editor.component.mjs +29 -10
- package/esm2022/editing/timezone-editor.component.mjs +13 -3
- package/esm2022/editing-directives/base-edit.service.mjs +8 -11
- package/esm2022/editing-directives/reactive-editing.directive.mjs +15 -2
- package/esm2022/events/add-event.mjs +3 -3
- package/esm2022/events/cancel-event.mjs +2 -2
- package/esm2022/events/create-event.mjs +6 -6
- package/esm2022/events/date-change-event.mjs +4 -4
- package/esm2022/events/drag-end-event.mjs +8 -8
- package/esm2022/events/drag-event.mjs +8 -8
- package/esm2022/events/drag-start-event.mjs +4 -4
- package/esm2022/events/edit-event.mjs +4 -4
- package/esm2022/events/event-click-event.mjs +5 -5
- package/esm2022/events/event-keydown-event.mjs +4 -4
- package/esm2022/events/navigate-event.mjs +3 -3
- package/esm2022/events/remove-event.mjs +4 -4
- package/esm2022/events/resize-end-event.mjs +6 -6
- package/esm2022/events/resize-event.mjs +8 -8
- package/esm2022/events/resize-start-event.mjs +4 -4
- package/esm2022/events/save-event.mjs +3 -3
- package/esm2022/events/slot-click-event.mjs +7 -7
- package/esm2022/events/slot-drag-end-event.mjs +1 -1
- package/esm2022/events/slot-drag-event.mjs +7 -7
- package/esm2022/events/slot-drag-start-event.mjs +8 -7
- package/esm2022/localization/custom-messages.component.mjs +14 -1
- package/esm2022/localization/messages.mjs +98 -98
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/pdf/pdf-command.directive.mjs +11 -11
- package/esm2022/pdf/pdf-export-event.mjs +1 -1
- package/esm2022/pdf/pdf.component.mjs +19 -8
- package/esm2022/pdf/pdf.module.mjs +7 -8
- package/esm2022/scheduler.component.mjs +62 -62
- package/esm2022/scheduler.module.mjs +6 -7
- package/esm2022/toolbar/navigation.component.mjs +16 -7
- package/esm2022/toolbar/toolbar-template.directive.mjs +18 -10
- package/esm2022/toolbar/toolbar.service.mjs +3 -4
- package/esm2022/toolbar/view-selector.component.mjs +14 -8
- package/esm2022/types/crud-operation.enum.mjs +3 -3
- package/esm2022/types/edit-mode.enum.mjs +2 -2
- package/esm2022/types/scheduler-view.mjs +1 -1
- package/esm2022/views/agenda/agenda-view.component.mjs +15 -11
- package/esm2022/views/common/slot-selectable.directive.mjs +16 -4
- package/esm2022/views/month/month-view.component.mjs +17 -16
- package/esm2022/views/month/multi-week-view.component.mjs +20 -18
- package/esm2022/views/multi-day/day-view.component.mjs +12 -7
- package/esm2022/views/multi-day/multi-day-view.component.mjs +16 -11
- package/esm2022/views/multi-day/week-view.component.mjs +14 -11
- package/esm2022/views/multi-day/work-week-view.component.mjs +8 -1
- package/esm2022/views/scheduler-view.directive.mjs +13 -3
- package/esm2022/views/templates/agenda-date-template.directive.mjs +13 -3
- package/esm2022/views/templates/agenda-time-template.directive.mjs +13 -3
- package/esm2022/views/templates/all-day-event-template.directive.mjs +13 -3
- package/esm2022/views/templates/all-day-slot-template.directive.mjs +13 -3
- package/esm2022/views/templates/date-header-template.directive.mjs +14 -4
- package/esm2022/views/templates/event-template.directive.mjs +13 -3
- package/esm2022/views/templates/group-header-template.directive.mjs +14 -4
- package/esm2022/views/templates/major-time-header-template.directive.mjs +13 -3
- package/esm2022/views/templates/minor-time-header-template.directive.mjs +13 -3
- package/esm2022/views/templates/month-day-slot-template.directive.mjs +13 -3
- package/esm2022/views/templates/multi-week-day-slot-template.directive.mjs +12 -3
- package/esm2022/views/templates/time-slot-template.directive.mjs +14 -4
- package/esm2022/views/timeline/timeline-month-view.component.mjs +16 -11
- package/esm2022/views/timeline/timeline-view.component.mjs +16 -11
- package/esm2022/views/timeline/timeline-week-view.component.mjs +18 -14
- package/esm2022/views/view-context.service.mjs +6 -6
- package/esm2022/views/view-state.service.mjs +9 -9
- package/esm2022/views/year/year-view.component.mjs +12 -7
- package/events/add-event.d.ts +3 -3
- package/events/cancel-event.d.ts +2 -2
- package/events/create-event.d.ts +6 -6
- package/events/date-change-event.d.ts +4 -4
- package/events/drag-end-event.d.ts +8 -8
- package/events/drag-event.d.ts +8 -8
- package/events/drag-start-event.d.ts +4 -4
- package/events/edit-event.d.ts +4 -4
- package/events/event-click-event.d.ts +5 -5
- package/events/event-keydown-event.d.ts +4 -4
- package/events/navigate-event.d.ts +3 -3
- package/events/remove-event.d.ts +4 -4
- package/events/resize-end-event.d.ts +6 -6
- package/events/resize-event.d.ts +8 -8
- package/events/resize-start-event.d.ts +4 -4
- package/events/save-event.d.ts +3 -3
- package/events/slot-click-event.d.ts +7 -7
- package/events/slot-drag-end-event.d.ts +1 -1
- package/events/slot-drag-event.d.ts +7 -7
- package/events/slot-drag-start-event.d.ts +8 -7
- package/fesm2022/progress-kendo-angular-scheduler.mjs +876 -543
- package/localization/custom-messages.component.d.ts +14 -1
- package/localization/messages.d.ts +98 -98
- package/navigation/focus-position.interface.d.ts +2 -3
- package/package.json +15 -15
- package/pdf/pdf-command.directive.d.ts +11 -11
- package/pdf/pdf-export-event.d.ts +1 -1
- package/pdf/pdf.component.d.ts +19 -8
- package/pdf/pdf.module.d.ts +7 -8
- package/scheduler.component.d.ts +62 -62
- package/scheduler.module.d.ts +6 -7
- package/schematics/ngAdd/index.js +3 -3
- package/toolbar/navigation.component.d.ts +16 -7
- package/toolbar/toolbar-template.directive.d.ts +18 -10
- package/toolbar/toolbar.service.d.ts +3 -4
- package/toolbar/view-selector.component.d.ts +14 -8
- package/types/actions.d.ts +51 -45
- package/types/create-form-group-args.interface.d.ts +1 -1
- package/types/crud-operation.enum.d.ts +3 -3
- package/types/current-time-settings.interface.d.ts +10 -8
- package/types/date-range.interface.d.ts +7 -11
- package/types/datepicker-options.interface.d.ts +33 -38
- package/types/edit-event-args.interface.d.ts +3 -4
- package/types/edit-mode.enum.d.ts +2 -2
- package/types/editable-settings.interface.d.ts +6 -6
- package/types/event-style-args.interface.d.ts +4 -4
- package/types/group.interface.d.ts +2 -2
- package/types/numeric-options.interface.d.ts +20 -16
- package/types/ongoing-events-settings.interface.d.ts +8 -6
- package/types/resource.interface.d.ts +8 -8
- package/types/scheduler-event.d.ts +13 -15
- package/types/scheduler-model-fields.interface.d.ts +34 -23
- package/types/scheduler-slot.interface.d.ts +7 -7
- package/types/scheduler-view.d.ts +3 -5
- package/types/slot-class-args.interface.d.ts +6 -6
- package/types/view-item.interface.d.ts +1 -1
- package/views/agenda/agenda-view.component.d.ts +15 -11
- package/views/common/slot-selectable.directive.d.ts +16 -4
- package/views/month/month-view.component.d.ts +17 -16
- package/views/month/multi-week-view.component.d.ts +20 -18
- package/views/multi-day/day-view.component.d.ts +12 -7
- package/views/multi-day/multi-day-view.component.d.ts +16 -11
- package/views/multi-day/week-view.component.d.ts +14 -11
- package/views/multi-day/work-week-view.component.d.ts +8 -1
- package/views/scheduler-view.directive.d.ts +13 -3
- package/views/templates/agenda-date-template.directive.d.ts +13 -3
- package/views/templates/agenda-time-template.directive.d.ts +13 -3
- package/views/templates/all-day-event-template.directive.d.ts +13 -3
- package/views/templates/all-day-slot-template.directive.d.ts +13 -3
- package/views/templates/date-header-template.directive.d.ts +14 -4
- package/views/templates/event-template.directive.d.ts +13 -3
- package/views/templates/group-header-template.directive.d.ts +14 -4
- package/views/templates/major-time-header-template.directive.d.ts +13 -3
- package/views/templates/minor-time-header-template.directive.d.ts +13 -3
- package/views/templates/month-day-slot-template.directive.d.ts +13 -3
- package/views/templates/multi-week-day-slot-template.directive.d.ts +12 -3
- package/views/templates/time-slot-template.directive.d.ts +14 -4
- package/views/timeline/timeline-month-view.component.d.ts +16 -11
- package/views/timeline/timeline-view.component.d.ts +16 -11
- package/views/timeline/timeline-week-view.component.d.ts +18 -14
- package/views/view-context.service.d.ts +6 -6
- package/views/view-state.service.d.ts +9 -9
- package/views/year/year-view.component.d.ts +12 -7
|
@@ -4,19 +4,19 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { SchedulerComponent } from '../scheduler.component';
|
|
6
6
|
/**
|
|
7
|
-
*
|
|
7
|
+
* Represents the arguments for the `eventKeydown` event.
|
|
8
8
|
*/
|
|
9
9
|
export declare class EventKeydownEvent {
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* Provides the original Scheduler event.
|
|
12
12
|
*/
|
|
13
13
|
event: any;
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
15
|
+
* Provides the original DOM event.
|
|
16
16
|
*/
|
|
17
17
|
originalEvent: any;
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* Provides a reference to the Scheduler instance that triggered the event.
|
|
20
20
|
*/
|
|
21
21
|
sender: SchedulerComponent;
|
|
22
22
|
/**
|
|
@@ -6,15 +6,15 @@ import { PreventableEvent } from '@progress/kendo-angular-dateinputs';
|
|
|
6
6
|
import { SchedulerComponent } from '../scheduler.component';
|
|
7
7
|
import { NavigationAction } from '../types';
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* Represents the arguments for the `navigate` event.
|
|
10
10
|
*/
|
|
11
11
|
export declare class NavigateEvent extends PreventableEvent {
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
13
|
+
* Provides the navigation action that triggered the event.
|
|
14
14
|
*/
|
|
15
15
|
action: NavigationAction;
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
17
|
+
* Provides a reference to the Scheduler instance that triggered the event.
|
|
18
18
|
*/
|
|
19
19
|
sender: SchedulerComponent;
|
|
20
20
|
/**
|
package/events/remove-event.d.ts
CHANGED
|
@@ -6,19 +6,19 @@ import { PreventableEvent } from './preventable-event';
|
|
|
6
6
|
import { SchedulerComponent } from '../scheduler.component';
|
|
7
7
|
import { SchedulerEvent } from '../types';
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* Represents the arguments for the `remove` event.
|
|
10
10
|
*/
|
|
11
11
|
export declare class RemoveEvent extends PreventableEvent {
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
13
|
+
* Provides the event data item whose **Remove** icon is clicked.
|
|
14
14
|
*/
|
|
15
15
|
dataItem: any;
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
17
|
+
* Provides the event whose **Remove** icon is clicked.
|
|
18
18
|
*/
|
|
19
19
|
event: SchedulerEvent;
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* Provides a reference to the Scheduler instance that triggered the event.
|
|
22
22
|
*/
|
|
23
23
|
sender: SchedulerComponent;
|
|
24
24
|
/**
|
|
@@ -5,27 +5,27 @@
|
|
|
5
5
|
import { SchedulerComponent } from '../scheduler.component';
|
|
6
6
|
import { PreventableEvent } from './preventable-event';
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Represents the arguments for the `resizeEnd` event.
|
|
9
9
|
*/
|
|
10
10
|
export declare class ResizeEndEvent extends PreventableEvent {
|
|
11
11
|
/**
|
|
12
|
-
*
|
|
12
|
+
* Provides the original Scheduler event.
|
|
13
13
|
*/
|
|
14
14
|
event: any;
|
|
15
15
|
/**
|
|
16
|
-
*
|
|
16
|
+
* Provides the data item of the event.
|
|
17
17
|
*/
|
|
18
18
|
dataItem: any;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Provides the new start date of the event.
|
|
21
21
|
*/
|
|
22
22
|
start: Date;
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Provides the new end date of the event.
|
|
25
25
|
*/
|
|
26
26
|
end: Date;
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
28
|
+
* Provides a reference to the Scheduler instance that triggered the event.
|
|
29
29
|
*/
|
|
30
30
|
sender: SchedulerComponent;
|
|
31
31
|
/**
|
package/events/resize-event.d.ts
CHANGED
|
@@ -5,35 +5,35 @@
|
|
|
5
5
|
import { SchedulerComponent } from '../scheduler.component';
|
|
6
6
|
import { PreventableEvent } from './preventable-event';
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Represents the arguments for the `resize` event.
|
|
9
9
|
*/
|
|
10
10
|
export declare class ResizeEvent extends PreventableEvent {
|
|
11
11
|
/**
|
|
12
|
-
*
|
|
12
|
+
* Provides the original Scheduler event.
|
|
13
13
|
*/
|
|
14
14
|
event: any;
|
|
15
15
|
/**
|
|
16
|
-
*
|
|
16
|
+
* Provides the data item of the event.
|
|
17
17
|
*/
|
|
18
18
|
dataItem: any;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Provides the new start date of the event.
|
|
21
21
|
*/
|
|
22
22
|
start: Date;
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Provides the new end date of the event.
|
|
25
25
|
*/
|
|
26
26
|
end: Date;
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
28
|
+
* Provides a reference to the Scheduler instance that triggered the event.
|
|
29
29
|
*/
|
|
30
30
|
sender: SchedulerComponent;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* Provides a method to set the class to the resize hint.
|
|
33
33
|
*/
|
|
34
34
|
setHintClass: (className: string) => void;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Provides a method to set the class to the slot over which the event is resized.
|
|
37
37
|
*/
|
|
38
38
|
setSlotClass: (className: string) => void;
|
|
39
39
|
/**
|
|
@@ -5,19 +5,19 @@
|
|
|
5
5
|
import { SchedulerComponent } from '../scheduler.component';
|
|
6
6
|
import { PreventableEvent } from './preventable-event';
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Represents the arguments for the `resizeStart` event.
|
|
9
9
|
*/
|
|
10
10
|
export declare class ResizeStartEvent extends PreventableEvent {
|
|
11
11
|
/**
|
|
12
|
-
*
|
|
12
|
+
* Provides the original Scheduler event.
|
|
13
13
|
*/
|
|
14
14
|
event: any;
|
|
15
15
|
/**
|
|
16
|
-
*
|
|
16
|
+
* Provides the data item of the event.
|
|
17
17
|
*/
|
|
18
18
|
dataItem: any;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Provides a reference to the Scheduler instance that triggered the event.
|
|
21
21
|
*/
|
|
22
22
|
sender: SchedulerComponent;
|
|
23
23
|
/**
|
package/events/save-event.d.ts
CHANGED
|
@@ -6,15 +6,15 @@ import { FormGroup } from '@angular/forms';
|
|
|
6
6
|
import { EditEventBase } from './edit-event-base';
|
|
7
7
|
import { EditMode } from '../types';
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* Represents the arguments for the `save` event.
|
|
10
10
|
*/
|
|
11
11
|
export declare class SaveEvent extends EditEventBase {
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
13
|
+
* Provides the edited `formGroup` instance.
|
|
14
14
|
*/
|
|
15
15
|
formGroup: FormGroup;
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
17
|
+
* Provides the selected edit mode.
|
|
18
18
|
*/
|
|
19
19
|
mode: EditMode;
|
|
20
20
|
}
|
|
@@ -4,19 +4,19 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { SchedulerComponent } from '../scheduler.component';
|
|
6
6
|
/**
|
|
7
|
-
*
|
|
7
|
+
* Represents the arguments for the `slotClick` and `slotDblClick` events.
|
|
8
8
|
*/
|
|
9
9
|
export declare class SlotClickEvent {
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* Provides the event type.
|
|
12
12
|
*/
|
|
13
13
|
type: 'click' | 'contextmenu';
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
15
|
+
* Provides the start date of the slot.
|
|
16
16
|
*/
|
|
17
17
|
start: Date;
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* Provides the end date of the slot.
|
|
20
20
|
*/
|
|
21
21
|
end: Date;
|
|
22
22
|
/**
|
|
@@ -24,15 +24,15 @@ export declare class SlotClickEvent {
|
|
|
24
24
|
*/
|
|
25
25
|
isAllDay: boolean;
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
27
|
+
* Provides the resources of the slot.
|
|
28
28
|
*/
|
|
29
29
|
resources: any[];
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* Provides the original DOM event.
|
|
32
32
|
*/
|
|
33
33
|
originalEvent: any;
|
|
34
34
|
/**
|
|
35
|
-
*
|
|
35
|
+
* Provides a reference to the Scheduler instance that triggered the event.
|
|
36
36
|
*/
|
|
37
37
|
sender: SchedulerComponent;
|
|
38
38
|
/**
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { SlotDragEvent } from './slot-drag-event';
|
|
6
6
|
/**
|
|
7
|
-
*
|
|
7
|
+
* Represents the arguments for the `slotDragEnd` event.
|
|
8
8
|
*/
|
|
9
9
|
export declare class SlotDragEndEvent extends SlotDragEvent {
|
|
10
10
|
}
|
|
@@ -5,31 +5,31 @@
|
|
|
5
5
|
import { SchedulerComponent } from '../scheduler.component';
|
|
6
6
|
import { ExtendedSlotRange } from '../types/slot-selection';
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Represents the arguments for the `slotDrag` event.
|
|
9
9
|
*/
|
|
10
10
|
export declare class SlotDragEvent implements ExtendedSlotRange {
|
|
11
11
|
/**
|
|
12
|
-
*
|
|
12
|
+
* Provides the start date of the slot selection.
|
|
13
13
|
*/
|
|
14
14
|
start: Date;
|
|
15
15
|
/**
|
|
16
|
-
*
|
|
16
|
+
* Provides the end date of the slot selection.
|
|
17
17
|
*/
|
|
18
18
|
end: Date;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Indicates if the slot selection consists of all-day slots, or of time slots.
|
|
21
21
|
*/
|
|
22
22
|
isAllDay: boolean;
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Provides the resources for the slot, if grouping by resource; otherwise all Scheduler resources.
|
|
25
25
|
*/
|
|
26
26
|
resources: any[];
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
28
|
+
* Provides the original DOM event.
|
|
29
29
|
*/
|
|
30
30
|
originalEvent: PointerEvent;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* Provides a reference to the Scheduler instance that triggered the event.
|
|
33
33
|
*/
|
|
34
34
|
sender: SchedulerComponent;
|
|
35
35
|
/**
|
|
@@ -6,16 +6,17 @@ import { SchedulerComponent } from '../scheduler.component';
|
|
|
6
6
|
import { ExtendedSlotRange } from '../types/slot-selection';
|
|
7
7
|
import { PreventableEvent } from './preventable-event';
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
10
|
-
*
|
|
9
|
+
* Represents the arguments for the `slotDragStart` event.
|
|
10
|
+
*
|
|
11
|
+
* The event is preventable. If prevented, subsequent `slotDrag`, `slotDragEnd`, and `slotSelectionChange` events will not be fired.
|
|
11
12
|
*/
|
|
12
13
|
export declare class SlotDragStartEvent extends PreventableEvent implements ExtendedSlotRange {
|
|
13
14
|
/**
|
|
14
|
-
*
|
|
15
|
+
* Provides the start date of the slot selection.
|
|
15
16
|
*/
|
|
16
17
|
start: Date;
|
|
17
18
|
/**
|
|
18
|
-
*
|
|
19
|
+
* Provides the end date of the slot selection.
|
|
19
20
|
*/
|
|
20
21
|
end: Date;
|
|
21
22
|
/**
|
|
@@ -23,15 +24,15 @@ export declare class SlotDragStartEvent extends PreventableEvent implements Exte
|
|
|
23
24
|
*/
|
|
24
25
|
isAllDay: boolean;
|
|
25
26
|
/**
|
|
26
|
-
*
|
|
27
|
+
* Provides the resources for the slot, if grouping by resource; otherwise all Scheduler resources.
|
|
27
28
|
*/
|
|
28
29
|
resources: any[];
|
|
29
30
|
/**
|
|
30
|
-
*
|
|
31
|
+
* Provides the original DOM event.
|
|
31
32
|
*/
|
|
32
33
|
originalEvent: PointerEvent;
|
|
33
34
|
/**
|
|
34
|
-
*
|
|
35
|
+
* Provides a reference to the Scheduler instance that triggered the event.
|
|
35
36
|
*/
|
|
36
37
|
sender: SchedulerComponent;
|
|
37
38
|
/**
|