@progress/kendo-angular-scheduler 19.1.2-develop.4 → 19.1.2-develop.5

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 (161) hide show
  1. package/data-binding.directive.d.ts +12 -3
  2. package/directives.d.ts +42 -2
  3. package/editing/edit-dialog-template.directive.d.ts +15 -2
  4. package/editing/recurrence/recurrence-editor.component.d.ts +29 -10
  5. package/editing/timezone-editor.component.d.ts +13 -3
  6. package/editing-directives/base-edit.service.d.ts +8 -11
  7. package/editing-directives/edit-service.interface.d.ts +22 -24
  8. package/editing-directives/reactive-editing.directive.d.ts +15 -2
  9. package/esm2022/data-binding.directive.mjs +12 -3
  10. package/esm2022/directives.mjs +42 -2
  11. package/esm2022/editing/edit-dialog-template.directive.mjs +15 -2
  12. package/esm2022/editing/recurrence/recurrence-editor.component.mjs +29 -10
  13. package/esm2022/editing/timezone-editor.component.mjs +13 -3
  14. package/esm2022/editing-directives/base-edit.service.mjs +8 -11
  15. package/esm2022/editing-directives/reactive-editing.directive.mjs +15 -2
  16. package/esm2022/events/add-event.mjs +3 -3
  17. package/esm2022/events/cancel-event.mjs +2 -2
  18. package/esm2022/events/create-event.mjs +6 -6
  19. package/esm2022/events/date-change-event.mjs +4 -4
  20. package/esm2022/events/drag-end-event.mjs +8 -8
  21. package/esm2022/events/drag-event.mjs +8 -8
  22. package/esm2022/events/drag-start-event.mjs +4 -4
  23. package/esm2022/events/edit-event.mjs +4 -4
  24. package/esm2022/events/event-click-event.mjs +5 -5
  25. package/esm2022/events/event-keydown-event.mjs +4 -4
  26. package/esm2022/events/navigate-event.mjs +3 -3
  27. package/esm2022/events/remove-event.mjs +4 -4
  28. package/esm2022/events/resize-end-event.mjs +6 -6
  29. package/esm2022/events/resize-event.mjs +8 -8
  30. package/esm2022/events/resize-start-event.mjs +4 -4
  31. package/esm2022/events/save-event.mjs +3 -3
  32. package/esm2022/events/slot-click-event.mjs +7 -7
  33. package/esm2022/events/slot-drag-end-event.mjs +1 -1
  34. package/esm2022/events/slot-drag-event.mjs +7 -7
  35. package/esm2022/events/slot-drag-start-event.mjs +8 -7
  36. package/esm2022/localization/custom-messages.component.mjs +14 -1
  37. package/esm2022/localization/messages.mjs +98 -98
  38. package/esm2022/package-metadata.mjs +2 -2
  39. package/esm2022/pdf/pdf-command.directive.mjs +11 -11
  40. package/esm2022/pdf/pdf-export-event.mjs +1 -1
  41. package/esm2022/pdf/pdf.component.mjs +19 -8
  42. package/esm2022/pdf/pdf.module.mjs +7 -8
  43. package/esm2022/scheduler.component.mjs +62 -62
  44. package/esm2022/scheduler.module.mjs +6 -7
  45. package/esm2022/toolbar/navigation.component.mjs +16 -7
  46. package/esm2022/toolbar/toolbar-template.directive.mjs +18 -10
  47. package/esm2022/toolbar/toolbar.service.mjs +3 -4
  48. package/esm2022/toolbar/view-selector.component.mjs +14 -8
  49. package/esm2022/types/crud-operation.enum.mjs +3 -3
  50. package/esm2022/types/edit-mode.enum.mjs +2 -2
  51. package/esm2022/types/scheduler-view.mjs +1 -1
  52. package/esm2022/views/agenda/agenda-view.component.mjs +15 -11
  53. package/esm2022/views/common/slot-selectable.directive.mjs +16 -4
  54. package/esm2022/views/month/month-view.component.mjs +17 -16
  55. package/esm2022/views/month/multi-week-view.component.mjs +20 -18
  56. package/esm2022/views/multi-day/day-view.component.mjs +12 -7
  57. package/esm2022/views/multi-day/multi-day-view.component.mjs +16 -11
  58. package/esm2022/views/multi-day/week-view.component.mjs +14 -11
  59. package/esm2022/views/multi-day/work-week-view.component.mjs +8 -1
  60. package/esm2022/views/scheduler-view.directive.mjs +13 -3
  61. package/esm2022/views/templates/agenda-date-template.directive.mjs +13 -3
  62. package/esm2022/views/templates/agenda-time-template.directive.mjs +13 -3
  63. package/esm2022/views/templates/all-day-event-template.directive.mjs +13 -3
  64. package/esm2022/views/templates/all-day-slot-template.directive.mjs +13 -3
  65. package/esm2022/views/templates/date-header-template.directive.mjs +14 -4
  66. package/esm2022/views/templates/event-template.directive.mjs +13 -3
  67. package/esm2022/views/templates/group-header-template.directive.mjs +14 -4
  68. package/esm2022/views/templates/major-time-header-template.directive.mjs +13 -3
  69. package/esm2022/views/templates/minor-time-header-template.directive.mjs +13 -3
  70. package/esm2022/views/templates/month-day-slot-template.directive.mjs +13 -3
  71. package/esm2022/views/templates/multi-week-day-slot-template.directive.mjs +12 -3
  72. package/esm2022/views/templates/time-slot-template.directive.mjs +14 -4
  73. package/esm2022/views/timeline/timeline-month-view.component.mjs +16 -11
  74. package/esm2022/views/timeline/timeline-view.component.mjs +16 -11
  75. package/esm2022/views/timeline/timeline-week-view.component.mjs +18 -14
  76. package/esm2022/views/view-context.service.mjs +6 -6
  77. package/esm2022/views/view-state.service.mjs +9 -9
  78. package/esm2022/views/year/year-view.component.mjs +12 -7
  79. package/events/add-event.d.ts +3 -3
  80. package/events/cancel-event.d.ts +2 -2
  81. package/events/create-event.d.ts +6 -6
  82. package/events/date-change-event.d.ts +4 -4
  83. package/events/drag-end-event.d.ts +8 -8
  84. package/events/drag-event.d.ts +8 -8
  85. package/events/drag-start-event.d.ts +4 -4
  86. package/events/edit-event.d.ts +4 -4
  87. package/events/event-click-event.d.ts +5 -5
  88. package/events/event-keydown-event.d.ts +4 -4
  89. package/events/navigate-event.d.ts +3 -3
  90. package/events/remove-event.d.ts +4 -4
  91. package/events/resize-end-event.d.ts +6 -6
  92. package/events/resize-event.d.ts +8 -8
  93. package/events/resize-start-event.d.ts +4 -4
  94. package/events/save-event.d.ts +3 -3
  95. package/events/slot-click-event.d.ts +7 -7
  96. package/events/slot-drag-end-event.d.ts +1 -1
  97. package/events/slot-drag-event.d.ts +7 -7
  98. package/events/slot-drag-start-event.d.ts +8 -7
  99. package/fesm2022/progress-kendo-angular-scheduler.mjs +876 -543
  100. package/localization/custom-messages.component.d.ts +14 -1
  101. package/localization/messages.d.ts +98 -98
  102. package/navigation/focus-position.interface.d.ts +2 -3
  103. package/package.json +15 -15
  104. package/pdf/pdf-command.directive.d.ts +11 -11
  105. package/pdf/pdf-export-event.d.ts +1 -1
  106. package/pdf/pdf.component.d.ts +19 -8
  107. package/pdf/pdf.module.d.ts +7 -8
  108. package/scheduler.component.d.ts +62 -62
  109. package/scheduler.module.d.ts +6 -7
  110. package/schematics/ngAdd/index.js +3 -3
  111. package/toolbar/navigation.component.d.ts +16 -7
  112. package/toolbar/toolbar-template.directive.d.ts +18 -10
  113. package/toolbar/toolbar.service.d.ts +3 -4
  114. package/toolbar/view-selector.component.d.ts +14 -8
  115. package/types/actions.d.ts +51 -45
  116. package/types/create-form-group-args.interface.d.ts +1 -1
  117. package/types/crud-operation.enum.d.ts +3 -3
  118. package/types/current-time-settings.interface.d.ts +10 -8
  119. package/types/date-range.interface.d.ts +7 -11
  120. package/types/datepicker-options.interface.d.ts +33 -38
  121. package/types/edit-event-args.interface.d.ts +3 -4
  122. package/types/edit-mode.enum.d.ts +2 -2
  123. package/types/editable-settings.interface.d.ts +6 -6
  124. package/types/event-style-args.interface.d.ts +4 -4
  125. package/types/group.interface.d.ts +2 -2
  126. package/types/numeric-options.interface.d.ts +20 -16
  127. package/types/ongoing-events-settings.interface.d.ts +8 -6
  128. package/types/resource.interface.d.ts +8 -8
  129. package/types/scheduler-event.d.ts +13 -15
  130. package/types/scheduler-model-fields.interface.d.ts +34 -23
  131. package/types/scheduler-slot.interface.d.ts +7 -7
  132. package/types/scheduler-view.d.ts +3 -5
  133. package/types/slot-class-args.interface.d.ts +6 -6
  134. package/types/view-item.interface.d.ts +1 -1
  135. package/views/agenda/agenda-view.component.d.ts +15 -11
  136. package/views/common/slot-selectable.directive.d.ts +16 -4
  137. package/views/month/month-view.component.d.ts +17 -16
  138. package/views/month/multi-week-view.component.d.ts +20 -18
  139. package/views/multi-day/day-view.component.d.ts +12 -7
  140. package/views/multi-day/multi-day-view.component.d.ts +16 -11
  141. package/views/multi-day/week-view.component.d.ts +14 -11
  142. package/views/multi-day/work-week-view.component.d.ts +8 -1
  143. package/views/scheduler-view.directive.d.ts +13 -3
  144. package/views/templates/agenda-date-template.directive.d.ts +13 -3
  145. package/views/templates/agenda-time-template.directive.d.ts +13 -3
  146. package/views/templates/all-day-event-template.directive.d.ts +13 -3
  147. package/views/templates/all-day-slot-template.directive.d.ts +13 -3
  148. package/views/templates/date-header-template.directive.d.ts +14 -4
  149. package/views/templates/event-template.directive.d.ts +13 -3
  150. package/views/templates/group-header-template.directive.d.ts +14 -4
  151. package/views/templates/major-time-header-template.directive.d.ts +13 -3
  152. package/views/templates/minor-time-header-template.directive.d.ts +13 -3
  153. package/views/templates/month-day-slot-template.directive.d.ts +13 -3
  154. package/views/templates/multi-week-day-slot-template.directive.d.ts +12 -3
  155. package/views/templates/time-slot-template.directive.d.ts +14 -4
  156. package/views/timeline/timeline-month-view.component.d.ts +16 -11
  157. package/views/timeline/timeline-view.component.d.ts +16 -11
  158. package/views/timeline/timeline-week-view.component.d.ts +18 -14
  159. package/views/view-context.service.d.ts +6 -6
  160. package/views/view-state.service.d.ts +9 -9
  161. 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
- * Arguments for the `eventKeydown` event.
7
+ * Represents the arguments for the `eventKeydown` event.
8
8
  */
9
9
  export declare class EventKeydownEvent {
10
10
  /**
11
- * The original Scheduler event.
11
+ * Provides the original Scheduler event.
12
12
  */
13
13
  event: any;
14
14
  /**
15
- * The original DOM event.
15
+ * Provides the original DOM event.
16
16
  */
17
17
  originalEvent: any;
18
18
  /**
19
- * A reference to the Scheduler instance that triggered the event.
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
- * Arguments for the `navigate` event.
9
+ * Represents the arguments for the `navigate` event.
10
10
  */
11
11
  export declare class NavigateEvent extends PreventableEvent {
12
12
  /**
13
- * The navigation action that triggered the event.
13
+ * Provides the navigation action that triggered the event.
14
14
  */
15
15
  action: NavigationAction;
16
16
  /**
17
- * A reference to the Scheduler instance that triggered the event.
17
+ * Provides a reference to the Scheduler instance that triggered the event.
18
18
  */
19
19
  sender: SchedulerComponent;
20
20
  /**
@@ -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
- * Arguments for the `remove` event.
9
+ * Represents the arguments for the `remove` event.
10
10
  */
11
11
  export declare class RemoveEvent extends PreventableEvent {
12
12
  /**
13
- * The event data item whose **Remove** icon is clicked.
13
+ * Provides the event data item whose **Remove** icon is clicked.
14
14
  */
15
15
  dataItem: any;
16
16
  /**
17
- * The event whose **Remove** icon is clicked.
17
+ * Provides the event whose **Remove** icon is clicked.
18
18
  */
19
19
  event: SchedulerEvent;
20
20
  /**
21
- * A reference to the Scheduler instance that triggered the event.
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
- * Arguments for the `resizeEnd` event.
8
+ * Represents the arguments for the `resizeEnd` event.
9
9
  */
10
10
  export declare class ResizeEndEvent extends PreventableEvent {
11
11
  /**
12
- * The original Scheduler event.
12
+ * Provides the original Scheduler event.
13
13
  */
14
14
  event: any;
15
15
  /**
16
- * The data item of the event.
16
+ * Provides the data item of the event.
17
17
  */
18
18
  dataItem: any;
19
19
  /**
20
- * The new start date of the event.
20
+ * Provides the new start date of the event.
21
21
  */
22
22
  start: Date;
23
23
  /**
24
- * The new end date of the event.
24
+ * Provides the new end date of the event.
25
25
  */
26
26
  end: Date;
27
27
  /**
28
- * A reference to the Scheduler instance that triggered the event.
28
+ * Provides a reference to the Scheduler instance that triggered the event.
29
29
  */
30
30
  sender: SchedulerComponent;
31
31
  /**
@@ -5,35 +5,35 @@
5
5
  import { SchedulerComponent } from '../scheduler.component';
6
6
  import { PreventableEvent } from './preventable-event';
7
7
  /**
8
- * Arguments for the `resize` event.
8
+ * Represents the arguments for the `resize` event.
9
9
  */
10
10
  export declare class ResizeEvent extends PreventableEvent {
11
11
  /**
12
- * The original Scheduler event.
12
+ * Provides the original Scheduler event.
13
13
  */
14
14
  event: any;
15
15
  /**
16
- * The data item of the event.
16
+ * Provides the data item of the event.
17
17
  */
18
18
  dataItem: any;
19
19
  /**
20
- * The new start date of the event.
20
+ * Provides the new start date of the event.
21
21
  */
22
22
  start: Date;
23
23
  /**
24
- * The new end date of the event.
24
+ * Provides the new end date of the event.
25
25
  */
26
26
  end: Date;
27
27
  /**
28
- * A reference to the Scheduler instance that triggered the event.
28
+ * Provides a reference to the Scheduler instance that triggered the event.
29
29
  */
30
30
  sender: SchedulerComponent;
31
31
  /**
32
- * Sets the class to the resize hint ([see example]({% slug restrictions_scheduler %})).
32
+ * Provides a method to set the class to the resize hint.
33
33
  */
34
34
  setHintClass: (className: string) => void;
35
35
  /**
36
- * Sets the class to the slot over which the event is resized.
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
- * Arguments for the `resizeStart` event.
8
+ * Represents the arguments for the `resizeStart` event.
9
9
  */
10
10
  export declare class ResizeStartEvent extends PreventableEvent {
11
11
  /**
12
- * The original Scheduler event.
12
+ * Provides the original Scheduler event.
13
13
  */
14
14
  event: any;
15
15
  /**
16
- * The data item of the event.
16
+ * Provides the data item of the event.
17
17
  */
18
18
  dataItem: any;
19
19
  /**
20
- * A reference to the Scheduler instance that triggered the event.
20
+ * Provides a reference to the Scheduler instance that triggered the event.
21
21
  */
22
22
  sender: SchedulerComponent;
23
23
  /**
@@ -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
- * Arguments for the `save` event.
9
+ * Represents the arguments for the `save` event.
10
10
  */
11
11
  export declare class SaveEvent extends EditEventBase {
12
12
  /**
13
- * The edited `formGroup` instance.
13
+ * Provides the edited `formGroup` instance.
14
14
  */
15
15
  formGroup: FormGroup;
16
16
  /**
17
- * The selected edit mode.
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
- * Arguments for `slotClick` and `slotDblClick` events.
7
+ * Represents the arguments for the `slotClick` and `slotDblClick` events.
8
8
  */
9
9
  export declare class SlotClickEvent {
10
10
  /**
11
- * The event type.
11
+ * Provides the event type.
12
12
  */
13
13
  type: 'click' | 'contextmenu';
14
14
  /**
15
- * The start date of the slot.
15
+ * Provides the start date of the slot.
16
16
  */
17
17
  start: Date;
18
18
  /**
19
- * The end date of the slot.
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
- * The resources of the slot.
27
+ * Provides the resources of the slot.
28
28
  */
29
29
  resources: any[];
30
30
  /**
31
- * The original DOM event.
31
+ * Provides the original DOM event.
32
32
  */
33
33
  originalEvent: any;
34
34
  /**
35
- * A reference to the Scheduler instance that triggered the event.
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
- * Arguments for the `slotDragEnd` event.
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
- * Arguments for the `slotDrag` event.
8
+ * Represents the arguments for the `slotDrag` event.
9
9
  */
10
10
  export declare class SlotDragEvent implements ExtendedSlotRange {
11
11
  /**
12
- * The start date of the slot selection.
12
+ * Provides the start date of the slot selection.
13
13
  */
14
14
  start: Date;
15
15
  /**
16
- * The end date of the slot selection.
16
+ * Provides the end date of the slot selection.
17
17
  */
18
18
  end: Date;
19
19
  /**
20
- * Indicates if the slot selection consists of all-day slots, or of time slots.
20
+ * Indicates if the slot selection consists of all-day slots, or of time slots.
21
21
  */
22
22
  isAllDay: boolean;
23
23
  /**
24
- * The resources for the slot, if grouping by resource; otherwise all Scheduler resources.
24
+ * Provides the resources for the slot, if grouping by resource; otherwise all Scheduler resources.
25
25
  */
26
26
  resources: any[];
27
27
  /**
28
- * The original DOM event.
28
+ * Provides the original DOM event.
29
29
  */
30
30
  originalEvent: PointerEvent;
31
31
  /**
32
- * A reference to the Scheduler instance that triggered the event.
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
- * Arguments for the `slotDragStart` event.
10
- * The event is preventable and if prevented, subsequent `slotDrag`, `slotDragEnd`, and `slotSelectionChange` will not be fired.
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
- * The start date of the slot selection.
15
+ * Provides the start date of the slot selection.
15
16
  */
16
17
  start: Date;
17
18
  /**
18
- * The end date of the slot selection.
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
- * The resources for the slot, if grouping by resource; otherwise all Scheduler resources.
27
+ * Provides the resources for the slot, if grouping by resource; otherwise all Scheduler resources.
27
28
  */
28
29
  resources: any[];
29
30
  /**
30
- * The original DOM event.
31
+ * Provides the original DOM event.
31
32
  */
32
33
  originalEvent: PointerEvent;
33
34
  /**
34
- * A reference to the Scheduler instance that triggered the event.
35
+ * Provides a reference to the Scheduler instance that triggered the event.
35
36
  */
36
37
  sender: SchedulerComponent;
37
38
  /**