@progress/kendo-angular-scheduler 24.0.0-develop.2 → 24.0.0-develop.21
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/NOTICE.txt +2599 -172
- package/fesm2022/progress-kendo-angular-scheduler.mjs +103 -80
- package/package-metadata.mjs +2 -2
- package/package.json +16 -16
- package/schematics/ngAdd/index.js +3 -3
- package/toolbar/view-selector.component.d.ts +16 -0
- package/views/agenda/agenda-view-list.component.d.ts +2 -2
- package/views/day-time/day-time-view-item.component.d.ts +4 -4
- package/views/month/month-view-item.component.d.ts +2 -2
- package/views/view-items/base-view-item.d.ts +2 -2
- package/views/year/year-view-internal.component.d.ts +2 -2
|
@@ -35,8 +35,8 @@ export declare class BaseViewItem implements OnInit, OnChanges, OnDestroy, ViewI
|
|
|
35
35
|
get deleteMessage(): string;
|
|
36
36
|
get resizable(): boolean;
|
|
37
37
|
get removable(): boolean;
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
chevronLeftIcon: SVGIcon;
|
|
39
|
+
chevronRightIcon: SVGIcon;
|
|
40
40
|
rect: Rect;
|
|
41
41
|
private subs;
|
|
42
42
|
constructor(slotService: BaseSlotService, localization: LocalizationService, focusService: FocusService, element: ElementRef, renderer: Renderer2, intl: IntlService);
|
|
@@ -35,8 +35,8 @@ export declare class YearViewInternalComponent extends BaseView implements After
|
|
|
35
35
|
tooltip: TooltipDirective;
|
|
36
36
|
get arrowIcons(): string[];
|
|
37
37
|
get arrowSVGIcons(): SVGIcon[];
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
chevronLeftIcon: SVGIcon;
|
|
39
|
+
chevronRightIcon: SVGIcon;
|
|
40
40
|
eventsPerSelectedDay: any[];
|
|
41
41
|
days: Date[];
|
|
42
42
|
focusedDate: Date;
|