@progress/kendo-angular-scheduler 17.0.0-develop.39 → 17.0.0-develop.40
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/esm2022/index.mjs +0 -6
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-scheduler.mjs +3 -225
- package/index.d.ts +0 -6
- package/package.json +14 -14
- package/schematics/ngAdd/index.js +3 -3
- package/esm2022/shared.module.mjs +0 -40
- package/esm2022/views/common/views-shared.module.mjs +0 -60
- package/esm2022/views/day-time/day-time.module.mjs +0 -39
- package/esm2022/views/month/month-view.module.mjs +0 -47
- package/esm2022/views/multi-day/multi-day-view.module.mjs +0 -52
- package/esm2022/views/timeline/timeline-view.module.mjs +0 -48
- package/shared.module.d.ts +0 -19
- package/views/common/views-shared.module.d.ts +0 -22
- package/views/day-time/day-time.module.d.ts +0 -18
- package/views/month/month-view.module.d.ts +0 -18
- package/views/multi-day/multi-day-view.module.d.ts +0 -20
- package/views/timeline/timeline-view.module.d.ts +0 -19
package/esm2022/index.mjs
CHANGED
|
@@ -29,15 +29,12 @@ export { ToolbarNavigationComponent } from './toolbar/navigation.component';
|
|
|
29
29
|
export { ToolbarViewSelectorComponent } from './toolbar/view-selector.component';
|
|
30
30
|
export { MonthViewComponent } from './views/month/month-view.component';
|
|
31
31
|
export { MultiWeekViewComponent } from './views/month/multi-week-view.component';
|
|
32
|
-
export { MonthViewModule } from './views/month/month-view.module';
|
|
33
32
|
export { MultiDayViewComponent } from './views/multi-day/multi-day-view.component';
|
|
34
33
|
export { WorkWeekViewComponent } from './views/multi-day/work-week-view.component';
|
|
35
|
-
export { MultiDayViewModule } from './views/multi-day/multi-day-view.module';
|
|
36
34
|
export { SchedulerViewDirective } from './views/scheduler-view.directive';
|
|
37
35
|
export { TimelineViewComponent } from './views/timeline/timeline-view.component';
|
|
38
36
|
export { TimelineWeekViewComponent } from './views/timeline/timeline-week-view.component';
|
|
39
37
|
export { TimelineMonthViewComponent } from './views/timeline/timeline-month-view.component';
|
|
40
|
-
export { TimelineViewModule } from './views/timeline/timeline-view.module';
|
|
41
38
|
export { ReactiveEditingDirective } from './editing-directives/reactive-editing.directive';
|
|
42
39
|
export { MultipleResourceEditorComponent } from './editing/resource-multiple-editor.component';
|
|
43
40
|
export { SingleResourceEditorComponent } from './editing/resource-single-editor.component';
|
|
@@ -68,8 +65,6 @@ export { PDFCommandDirective } from './pdf/pdf-command.directive';
|
|
|
68
65
|
export { PDFExportEvent } from './pdf/pdf-export-event';
|
|
69
66
|
export { FocusableDirective } from './navigation';
|
|
70
67
|
export { FocusService } from './navigation/focus.service';
|
|
71
|
-
export { SharedModule } from './shared.module';
|
|
72
|
-
export { ViewsSharedModule } from './views/common/views-shared.module';
|
|
73
68
|
export { HintContainerComponent } from './views/common/hint-container.component';
|
|
74
69
|
export { ViewFooterComponent } from './views/common/view-footer.component';
|
|
75
70
|
export { RepeatPipe } from './views/common/repeat.pipe';
|
|
@@ -81,7 +76,6 @@ export { TimelineMultiDayViewComponent } from './views/timeline/timeline-multi-d
|
|
|
81
76
|
export { DayTimeSlotService } from './views/day-time/day-time-slot.service';
|
|
82
77
|
export { DayTimeViewItemComponent } from './views/day-time/day-time-view-item.component';
|
|
83
78
|
export { TimeSlotDirective, DaySlotDirective } from './views/day-time/event-slot.directive';
|
|
84
|
-
export { DayTimeModule } from './views/day-time/day-time.module';
|
|
85
79
|
export { SortPipe } from './views/timeline/utils';
|
|
86
80
|
export { YearViewInternalComponent } from './views/year/year-view-internal.component';
|
|
87
81
|
export * from './types';
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-scheduler',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '17.0.0-develop.
|
|
12
|
+
publishDate: 1730799146,
|
|
13
|
+
version: '17.0.0-develop.40',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -42,8 +42,8 @@ const packageMetadata = {
|
|
|
42
42
|
name: '@progress/kendo-angular-scheduler',
|
|
43
43
|
productName: 'Kendo UI for Angular',
|
|
44
44
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
45
|
-
publishDate:
|
|
46
|
-
version: '17.0.0-develop.
|
|
45
|
+
publishDate: 1730799146,
|
|
46
|
+
version: '17.0.0-develop.40',
|
|
47
47
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
48
48
|
};
|
|
49
49
|
|
|
@@ -20456,120 +20456,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
20456
20456
|
}]
|
|
20457
20457
|
}] });
|
|
20458
20458
|
|
|
20459
|
-
/**
|
|
20460
|
-
* @hidden
|
|
20461
|
-
*
|
|
20462
|
-
* As of package v17, the `MonthViewModule` is deprecated and can
|
|
20463
|
-
* be removed in a future major version. We recommend using `SchedulerModule`.
|
|
20464
|
-
*/
|
|
20465
|
-
class MonthViewModule {
|
|
20466
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MonthViewModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20467
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: MonthViewModule, imports: [MonthViewComponent,
|
|
20468
|
-
MultiWeekViewComponent], exports: [MonthViewComponent,
|
|
20469
|
-
MultiWeekViewComponent] });
|
|
20470
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MonthViewModule, providers: [
|
|
20471
|
-
IconsService,
|
|
20472
|
-
PopupService,
|
|
20473
|
-
ResizeBatchService
|
|
20474
|
-
], imports: [MonthViewComponent,
|
|
20475
|
-
MultiWeekViewComponent] });
|
|
20476
|
-
}
|
|
20477
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MonthViewModule, decorators: [{
|
|
20478
|
-
type: NgModule,
|
|
20479
|
-
args: [{
|
|
20480
|
-
imports: [
|
|
20481
|
-
MonthViewComponent,
|
|
20482
|
-
MultiWeekViewComponent
|
|
20483
|
-
],
|
|
20484
|
-
exports: [
|
|
20485
|
-
MonthViewComponent,
|
|
20486
|
-
MultiWeekViewComponent
|
|
20487
|
-
],
|
|
20488
|
-
providers: [
|
|
20489
|
-
IconsService,
|
|
20490
|
-
PopupService,
|
|
20491
|
-
ResizeBatchService
|
|
20492
|
-
]
|
|
20493
|
-
}]
|
|
20494
|
-
}] });
|
|
20495
|
-
|
|
20496
|
-
const PUBLIC_DIRECTIVES$1 = [
|
|
20497
|
-
DayViewComponent,
|
|
20498
|
-
MultiDayViewComponent,
|
|
20499
|
-
WeekViewComponent,
|
|
20500
|
-
WorkWeekViewComponent
|
|
20501
|
-
];
|
|
20502
|
-
/**
|
|
20503
|
-
* @hidden
|
|
20504
|
-
*
|
|
20505
|
-
* As of package v17, the `MultiDayViewModule` is deprecated and can
|
|
20506
|
-
* be removed in a future major version. We recommend using `SchedulerModule`.
|
|
20507
|
-
*/
|
|
20508
|
-
class MultiDayViewModule {
|
|
20509
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MultiDayViewModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20510
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: MultiDayViewModule, imports: [DayViewComponent,
|
|
20511
|
-
MultiDayViewComponent,
|
|
20512
|
-
WeekViewComponent,
|
|
20513
|
-
WorkWeekViewComponent], exports: [DayViewComponent,
|
|
20514
|
-
MultiDayViewComponent,
|
|
20515
|
-
WeekViewComponent,
|
|
20516
|
-
WorkWeekViewComponent] });
|
|
20517
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MultiDayViewModule, providers: [
|
|
20518
|
-
IconsService,
|
|
20519
|
-
PopupService,
|
|
20520
|
-
ResizeBatchService
|
|
20521
|
-
], imports: [PUBLIC_DIRECTIVES$1] });
|
|
20522
|
-
}
|
|
20523
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MultiDayViewModule, decorators: [{
|
|
20524
|
-
type: NgModule,
|
|
20525
|
-
args: [{
|
|
20526
|
-
imports: [PUBLIC_DIRECTIVES$1],
|
|
20527
|
-
exports: [PUBLIC_DIRECTIVES$1],
|
|
20528
|
-
providers: [
|
|
20529
|
-
IconsService,
|
|
20530
|
-
PopupService,
|
|
20531
|
-
ResizeBatchService
|
|
20532
|
-
]
|
|
20533
|
-
}]
|
|
20534
|
-
}] });
|
|
20535
|
-
|
|
20536
|
-
const PUBLIC_DIRECTIVES = [
|
|
20537
|
-
TimelineViewComponent,
|
|
20538
|
-
TimelineWeekViewComponent,
|
|
20539
|
-
TimelineMonthViewComponent
|
|
20540
|
-
];
|
|
20541
|
-
/**
|
|
20542
|
-
* @hidden
|
|
20543
|
-
*
|
|
20544
|
-
* As of package v17, the `TimelineViewModule` is deprecated and can
|
|
20545
|
-
* be removed in a future major version. We recommend using `SchedulerModule`.
|
|
20546
|
-
*/
|
|
20547
|
-
class TimelineViewModule {
|
|
20548
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TimelineViewModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20549
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: TimelineViewModule, imports: [TimelineViewComponent,
|
|
20550
|
-
TimelineWeekViewComponent,
|
|
20551
|
-
TimelineMonthViewComponent], exports: [TimelineViewComponent,
|
|
20552
|
-
TimelineWeekViewComponent,
|
|
20553
|
-
TimelineMonthViewComponent] });
|
|
20554
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TimelineViewModule, providers: [
|
|
20555
|
-
IconsService,
|
|
20556
|
-
PopupService,
|
|
20557
|
-
ResizeBatchService
|
|
20558
|
-
], imports: [PUBLIC_DIRECTIVES] });
|
|
20559
|
-
}
|
|
20560
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TimelineViewModule, decorators: [{
|
|
20561
|
-
type: NgModule,
|
|
20562
|
-
args: [{
|
|
20563
|
-
imports: [PUBLIC_DIRECTIVES],
|
|
20564
|
-
exports: [PUBLIC_DIRECTIVES],
|
|
20565
|
-
providers: [
|
|
20566
|
-
IconsService,
|
|
20567
|
-
PopupService,
|
|
20568
|
-
ResizeBatchService
|
|
20569
|
-
]
|
|
20570
|
-
}]
|
|
20571
|
-
}] });
|
|
20572
|
-
|
|
20573
20459
|
/**
|
|
20574
20460
|
* @hidden
|
|
20575
20461
|
* Custom component messages override default component messages.
|
|
@@ -20954,117 +20840,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
20954
20840
|
}]
|
|
20955
20841
|
}] });
|
|
20956
20842
|
|
|
20957
|
-
/**
|
|
20958
|
-
* @hidden
|
|
20959
|
-
*
|
|
20960
|
-
* As of package v17, the `SharedModule` is deprecated and can
|
|
20961
|
-
* be removed in a future major version. We recommend using `SchedulerModule`.
|
|
20962
|
-
*/
|
|
20963
|
-
class SharedModule {
|
|
20964
|
-
static exports() {
|
|
20965
|
-
return [
|
|
20966
|
-
FocusableDirective,
|
|
20967
|
-
SortPipe
|
|
20968
|
-
];
|
|
20969
|
-
}
|
|
20970
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20971
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: SharedModule, imports: [FocusableDirective,
|
|
20972
|
-
SortPipe], exports: [FocusableDirective,
|
|
20973
|
-
SortPipe] });
|
|
20974
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SharedModule });
|
|
20975
|
-
}
|
|
20976
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SharedModule, decorators: [{
|
|
20977
|
-
type: NgModule,
|
|
20978
|
-
args: [{
|
|
20979
|
-
imports: [
|
|
20980
|
-
FocusableDirective,
|
|
20981
|
-
SortPipe
|
|
20982
|
-
],
|
|
20983
|
-
exports: [
|
|
20984
|
-
FocusableDirective,
|
|
20985
|
-
SortPipe
|
|
20986
|
-
]
|
|
20987
|
-
}]
|
|
20988
|
-
}] });
|
|
20989
|
-
|
|
20990
|
-
const DECLARATIONS = [
|
|
20991
|
-
ViewFooterComponent,
|
|
20992
|
-
WorkHoursFooterDirective,
|
|
20993
|
-
RepeatPipe,
|
|
20994
|
-
ResourceIteratorPipe,
|
|
20995
|
-
HintContainerComponent,
|
|
20996
|
-
ResizeHintComponent
|
|
20997
|
-
];
|
|
20998
|
-
/**
|
|
20999
|
-
* @hidden
|
|
21000
|
-
*
|
|
21001
|
-
* As of package v17, the `ViewsSharedModule` is deprecated and can
|
|
21002
|
-
* be removed in a future major version. We recommend using `SchedulerModule`.
|
|
21003
|
-
*/
|
|
21004
|
-
class ViewsSharedModule {
|
|
21005
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ViewsSharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
21006
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: ViewsSharedModule, imports: [ViewFooterComponent,
|
|
21007
|
-
WorkHoursFooterDirective,
|
|
21008
|
-
RepeatPipe,
|
|
21009
|
-
ResourceIteratorPipe,
|
|
21010
|
-
HintContainerComponent,
|
|
21011
|
-
ResizeHintComponent], exports: [ViewFooterComponent,
|
|
21012
|
-
WorkHoursFooterDirective,
|
|
21013
|
-
RepeatPipe,
|
|
21014
|
-
ResourceIteratorPipe,
|
|
21015
|
-
HintContainerComponent,
|
|
21016
|
-
ResizeHintComponent] });
|
|
21017
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ViewsSharedModule, providers: [
|
|
21018
|
-
IconsService,
|
|
21019
|
-
PopupService,
|
|
21020
|
-
ResizeBatchService
|
|
21021
|
-
], imports: [ViewFooterComponent] });
|
|
21022
|
-
}
|
|
21023
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ViewsSharedModule, decorators: [{
|
|
21024
|
-
type: NgModule,
|
|
21025
|
-
args: [{
|
|
21026
|
-
imports: [DECLARATIONS],
|
|
21027
|
-
exports: [DECLARATIONS],
|
|
21028
|
-
providers: [
|
|
21029
|
-
IconsService,
|
|
21030
|
-
PopupService,
|
|
21031
|
-
ResizeBatchService
|
|
21032
|
-
]
|
|
21033
|
-
}]
|
|
21034
|
-
}] });
|
|
21035
|
-
|
|
21036
|
-
const DIRECTIVES = [TimeSlotDirective, DaySlotDirective, DayTimeViewItemComponent];
|
|
21037
|
-
/**
|
|
21038
|
-
* @hidden
|
|
21039
|
-
*
|
|
21040
|
-
* As of package v17, the `DayTimeModule` is deprecated and can
|
|
21041
|
-
* be removed in a future major version. We recommend using `SchedulerModule`.
|
|
21042
|
-
*/
|
|
21043
|
-
class DayTimeModule {
|
|
21044
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DayTimeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
21045
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: DayTimeModule, imports: [TimeSlotDirective, DaySlotDirective, DayTimeViewItemComponent], exports: [TimeSlotDirective, DaySlotDirective, DayTimeViewItemComponent] });
|
|
21046
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DayTimeModule, providers: [
|
|
21047
|
-
IconsService,
|
|
21048
|
-
PopupService,
|
|
21049
|
-
ResizeBatchService
|
|
21050
|
-
], imports: [DayTimeViewItemComponent] });
|
|
21051
|
-
}
|
|
21052
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DayTimeModule, decorators: [{
|
|
21053
|
-
type: NgModule,
|
|
21054
|
-
args: [{
|
|
21055
|
-
imports: [DIRECTIVES],
|
|
21056
|
-
exports: [DIRECTIVES],
|
|
21057
|
-
providers: [
|
|
21058
|
-
IconsService,
|
|
21059
|
-
PopupService,
|
|
21060
|
-
ResizeBatchService
|
|
21061
|
-
]
|
|
21062
|
-
}]
|
|
21063
|
-
}] });
|
|
21064
|
-
|
|
21065
20843
|
/**
|
|
21066
20844
|
* Generated bundle index. Do not edit.
|
|
21067
20845
|
*/
|
|
21068
20846
|
|
|
21069
|
-
export { AddEvent, AgendaDateTemplateDirective, AgendaTimeTemplateDirective, AgendaViewComponent, AllDayEventTemplateDirective, AllDaySlotTemplateDirective, BaseEditService, CancelEvent, CrudOperation, DataBindingDirective, DateChangeEvent, DateHeaderTemplateDirective, DaySlotDirective,
|
|
20847
|
+
export { AddEvent, AgendaDateTemplateDirective, AgendaTimeTemplateDirective, AgendaViewComponent, AllDayEventTemplateDirective, AllDaySlotTemplateDirective, BaseEditService, CancelEvent, CrudOperation, DataBindingDirective, DateChangeEvent, DateHeaderTemplateDirective, DaySlotDirective, DayTimeSlotService, DayTimeViewItemComponent, DayViewComponent, DragEndEvent, DragEvent, DragStartEvent, EditDialogComponent, EditDialogTemplateDirective, EditEvent, EditEventBase, EditMode, EndRuleRadioButtonDirective, EventClickEvent, EventKeydownEvent, EventTemplateDirective, FocusService, FocusableDirective, GroupHeaderTemplateDirective, HintContainerComponent, IsSlotSelectedArgs, KENDO_SCHEDULER, KENDO_SCHEDULERPDF, LoadingComponent, LocalizedMessagesDirective, MajorTimeHeaderTemplateDirective, MinorTimeHeaderTemplateDirective, MonthDaySlotTemplateDirective, MonthViewComponent, MultiDayViewComponent, MultiWeekDaySlotTemplateDirective, MultiWeekViewComponent, MultipleResourceEditorComponent, NavigateEvent, PDFCommandDirective, PDFComponent, PDFExportEvent, PDFModule, PDFService, ReactiveEditingDirective, RecurrenceEditorComponent, RecurrenceEditorCustomMessagesComponent, RecurrenceEditorLocalizedMessagesDirective, RecurrenceEndRuleEditorComponent, RecurrenceFrequencyEditorComponent, RecurrenceIntervalEditorComponent, RecurrenceMonthlyYearlyEditorComponent, RecurrenceWeekdayRuleEditorComponent, RemoveEvent, RepeatOnRadioButtonDirective, RepeatPipe, ResizeEndEvent, ResizeEvent, ResizeHintComponent, ResizeStartEvent, ResourceIteratorPipe, SaveEvent, SchedulerComponent, SchedulerCustomMessagesComponent, SchedulerDateTimePickerComponent, SchedulerModule, SchedulerView, SchedulerViewDirective, ShortcutsDirective, SingleResourceEditorComponent, SlotClickEvent, SlotDragEndEvent, SlotDragEvent, SlotDragStartEvent, SlotSelectableDirective, SortPipe, TimeSlotDirective, TimeSlotTemplateDirective, TimeZoneEditorComponent, TimelineBase, TimelineMonthViewComponent, TimelineMultiDayViewComponent, TimelineViewComponent, TimelineWeekViewComponent, ToolbarNavigationComponent, ToolbarService, ToolbarTemplateDirective, ToolbarViewSelectorComponent, VIEW_EVENT_MAP, ViewContextService, ViewFooterComponent, ViewStateService, WeekViewComponent, WorkHoursFooterDirective, WorkWeekViewComponent, YearViewComponent, YearViewInternalComponent };
|
|
21070
20848
|
|
package/index.d.ts
CHANGED
|
@@ -30,15 +30,12 @@ export { ToolbarNavigationComponent } from './toolbar/navigation.component';
|
|
|
30
30
|
export { ToolbarViewSelectorComponent } from './toolbar/view-selector.component';
|
|
31
31
|
export { MonthViewComponent } from './views/month/month-view.component';
|
|
32
32
|
export { MultiWeekViewComponent } from './views/month/multi-week-view.component';
|
|
33
|
-
export { MonthViewModule } from './views/month/month-view.module';
|
|
34
33
|
export { MultiDayViewComponent } from './views/multi-day/multi-day-view.component';
|
|
35
34
|
export { WorkWeekViewComponent } from './views/multi-day/work-week-view.component';
|
|
36
|
-
export { MultiDayViewModule } from './views/multi-day/multi-day-view.module';
|
|
37
35
|
export { SchedulerViewDirective } from './views/scheduler-view.directive';
|
|
38
36
|
export { TimelineViewComponent } from './views/timeline/timeline-view.component';
|
|
39
37
|
export { TimelineWeekViewComponent } from './views/timeline/timeline-week-view.component';
|
|
40
38
|
export { TimelineMonthViewComponent } from './views/timeline/timeline-month-view.component';
|
|
41
|
-
export { TimelineViewModule } from './views/timeline/timeline-view.module';
|
|
42
39
|
export { ReactiveEditingDirective } from './editing-directives/reactive-editing.directive';
|
|
43
40
|
export { MultipleResourceEditorComponent } from './editing/resource-multiple-editor.component';
|
|
44
41
|
export { SingleResourceEditorComponent } from './editing/resource-single-editor.component';
|
|
@@ -70,8 +67,6 @@ export { PDFCommandDirective } from './pdf/pdf-command.directive';
|
|
|
70
67
|
export { PDFExportEvent } from './pdf/pdf-export-event';
|
|
71
68
|
export { FocusableDirective } from './navigation';
|
|
72
69
|
export { FocusService } from './navigation/focus.service';
|
|
73
|
-
export { SharedModule } from './shared.module';
|
|
74
|
-
export { ViewsSharedModule } from './views/common/views-shared.module';
|
|
75
70
|
export { HintContainerComponent } from './views/common/hint-container.component';
|
|
76
71
|
export { ViewFooterComponent } from './views/common/view-footer.component';
|
|
77
72
|
export { RepeatPipe } from './views/common/repeat.pipe';
|
|
@@ -83,7 +78,6 @@ export { TimelineMultiDayViewComponent } from './views/timeline/timeline-multi-d
|
|
|
83
78
|
export { DayTimeSlotService } from './views/day-time/day-time-slot.service';
|
|
84
79
|
export { DayTimeViewItemComponent } from './views/day-time/day-time-view-item.component';
|
|
85
80
|
export { TimeSlotDirective, DaySlotDirective } from './views/day-time/event-slot.directive';
|
|
86
|
-
export { DayTimeModule } from './views/day-time/day-time.module';
|
|
87
81
|
export { SortPipe } from './views/timeline/utils';
|
|
88
82
|
export { YearViewInternalComponent } from './views/year/year-view-internal.component';
|
|
89
83
|
export * from './types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-scheduler",
|
|
3
|
-
"version": "17.0.0-develop.
|
|
3
|
+
"version": "17.0.0-develop.40",
|
|
4
4
|
"description": "Kendo UI Scheduler Angular - Outlook or Google-style angular scheduler calendar. Full-featured and customizable embedded scheduling from the creator developers trust for professional UI components.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -26,23 +26,23 @@
|
|
|
26
26
|
"@progress/kendo-data-query": "^1.0.0",
|
|
27
27
|
"@progress/kendo-drawing": "^1.21.0",
|
|
28
28
|
"@progress/kendo-licensing": "^1.0.2",
|
|
29
|
-
"@progress/kendo-angular-tooltip": "17.0.0-develop.
|
|
30
|
-
"@progress/kendo-angular-buttons": "17.0.0-develop.
|
|
31
|
-
"@progress/kendo-angular-common": "17.0.0-develop.
|
|
32
|
-
"@progress/kendo-angular-dateinputs": "17.0.0-develop.
|
|
33
|
-
"@progress/kendo-angular-dialog": "17.0.0-develop.
|
|
34
|
-
"@progress/kendo-angular-dropdowns": "17.0.0-develop.
|
|
35
|
-
"@progress/kendo-angular-icons": "17.0.0-develop.
|
|
36
|
-
"@progress/kendo-angular-inputs": "17.0.0-develop.
|
|
37
|
-
"@progress/kendo-angular-intl": "17.0.0-develop.
|
|
38
|
-
"@progress/kendo-angular-l10n": "17.0.0-develop.
|
|
39
|
-
"@progress/kendo-angular-label": "17.0.0-develop.
|
|
40
|
-
"@progress/kendo-angular-popup": "17.0.0-develop.
|
|
29
|
+
"@progress/kendo-angular-tooltip": "17.0.0-develop.40",
|
|
30
|
+
"@progress/kendo-angular-buttons": "17.0.0-develop.40",
|
|
31
|
+
"@progress/kendo-angular-common": "17.0.0-develop.40",
|
|
32
|
+
"@progress/kendo-angular-dateinputs": "17.0.0-develop.40",
|
|
33
|
+
"@progress/kendo-angular-dialog": "17.0.0-develop.40",
|
|
34
|
+
"@progress/kendo-angular-dropdowns": "17.0.0-develop.40",
|
|
35
|
+
"@progress/kendo-angular-icons": "17.0.0-develop.40",
|
|
36
|
+
"@progress/kendo-angular-inputs": "17.0.0-develop.40",
|
|
37
|
+
"@progress/kendo-angular-intl": "17.0.0-develop.40",
|
|
38
|
+
"@progress/kendo-angular-l10n": "17.0.0-develop.40",
|
|
39
|
+
"@progress/kendo-angular-label": "17.0.0-develop.40",
|
|
40
|
+
"@progress/kendo-angular-popup": "17.0.0-develop.40",
|
|
41
41
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"tslib": "^2.3.1",
|
|
45
|
-
"@progress/kendo-angular-schematics": "17.0.0-develop.
|
|
45
|
+
"@progress/kendo-angular-schematics": "17.0.0-develop.40",
|
|
46
46
|
"@progress/kendo-date-math": "^1.3.2",
|
|
47
47
|
"@progress/kendo-draggable": "^3.0.2",
|
|
48
48
|
"@progress/kendo-file-saver": "^1.0.7",
|
|
@@ -4,10 +4,10 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'SchedulerModule', package: 'scheduler', peerDependencies: {
|
|
6
6
|
// peer deps of the dropdowns
|
|
7
|
-
'@progress/kendo-angular-treeview': '17.0.0-develop.
|
|
8
|
-
'@progress/kendo-angular-navigation': '17.0.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '17.0.0-develop.40',
|
|
8
|
+
'@progress/kendo-angular-navigation': '17.0.0-develop.40',
|
|
9
9
|
// peer dependency of kendo-angular-inputs
|
|
10
|
-
'@progress/kendo-angular-dialog': '17.0.0-develop.
|
|
10
|
+
'@progress/kendo-angular-dialog': '17.0.0-develop.40',
|
|
11
11
|
// peer dependency of kendo-angular-icons
|
|
12
12
|
'@progress/kendo-svg-icons': '^3.0.0'
|
|
13
13
|
} });
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { NgModule } from '@angular/core';
|
|
6
|
-
import { FocusableDirective } from './navigation';
|
|
7
|
-
import { SortPipe } from './views/timeline/utils';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
/**
|
|
10
|
-
* @hidden
|
|
11
|
-
*
|
|
12
|
-
* As of package v17, the `SharedModule` is deprecated and can
|
|
13
|
-
* be removed in a future major version. We recommend using `SchedulerModule`.
|
|
14
|
-
*/
|
|
15
|
-
export class SharedModule {
|
|
16
|
-
static exports() {
|
|
17
|
-
return [
|
|
18
|
-
FocusableDirective,
|
|
19
|
-
SortPipe
|
|
20
|
-
];
|
|
21
|
-
}
|
|
22
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
23
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: SharedModule, imports: [FocusableDirective,
|
|
24
|
-
SortPipe], exports: [FocusableDirective,
|
|
25
|
-
SortPipe] });
|
|
26
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SharedModule });
|
|
27
|
-
}
|
|
28
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SharedModule, decorators: [{
|
|
29
|
-
type: NgModule,
|
|
30
|
-
args: [{
|
|
31
|
-
imports: [
|
|
32
|
-
FocusableDirective,
|
|
33
|
-
SortPipe
|
|
34
|
-
],
|
|
35
|
-
exports: [
|
|
36
|
-
FocusableDirective,
|
|
37
|
-
SortPipe
|
|
38
|
-
]
|
|
39
|
-
}]
|
|
40
|
-
}] });
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { NgModule } from '@angular/core';
|
|
6
|
-
import { ViewFooterComponent } from './view-footer.component';
|
|
7
|
-
import { WorkHoursFooterDirective } from './work-hours-footer.directive';
|
|
8
|
-
import { RepeatPipe } from './repeat.pipe';
|
|
9
|
-
import { ResourceIteratorPipe } from './resource-iterator.pipe';
|
|
10
|
-
import { HintContainerComponent } from './hint-container.component';
|
|
11
|
-
import { ResizeHintComponent } from './resize-hint.component';
|
|
12
|
-
import { IconsService } from '@progress/kendo-angular-icons';
|
|
13
|
-
import { ResizeBatchService } from '@progress/kendo-angular-common';
|
|
14
|
-
import { PopupService } from '@progress/kendo-angular-popup';
|
|
15
|
-
import * as i0 from "@angular/core";
|
|
16
|
-
const DECLARATIONS = [
|
|
17
|
-
ViewFooterComponent,
|
|
18
|
-
WorkHoursFooterDirective,
|
|
19
|
-
RepeatPipe,
|
|
20
|
-
ResourceIteratorPipe,
|
|
21
|
-
HintContainerComponent,
|
|
22
|
-
ResizeHintComponent
|
|
23
|
-
];
|
|
24
|
-
/**
|
|
25
|
-
* @hidden
|
|
26
|
-
*
|
|
27
|
-
* As of package v17, the `ViewsSharedModule` is deprecated and can
|
|
28
|
-
* be removed in a future major version. We recommend using `SchedulerModule`.
|
|
29
|
-
*/
|
|
30
|
-
export class ViewsSharedModule {
|
|
31
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ViewsSharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
32
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: ViewsSharedModule, imports: [ViewFooterComponent,
|
|
33
|
-
WorkHoursFooterDirective,
|
|
34
|
-
RepeatPipe,
|
|
35
|
-
ResourceIteratorPipe,
|
|
36
|
-
HintContainerComponent,
|
|
37
|
-
ResizeHintComponent], exports: [ViewFooterComponent,
|
|
38
|
-
WorkHoursFooterDirective,
|
|
39
|
-
RepeatPipe,
|
|
40
|
-
ResourceIteratorPipe,
|
|
41
|
-
HintContainerComponent,
|
|
42
|
-
ResizeHintComponent] });
|
|
43
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ViewsSharedModule, providers: [
|
|
44
|
-
IconsService,
|
|
45
|
-
PopupService,
|
|
46
|
-
ResizeBatchService
|
|
47
|
-
], imports: [ViewFooterComponent] });
|
|
48
|
-
}
|
|
49
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ViewsSharedModule, decorators: [{
|
|
50
|
-
type: NgModule,
|
|
51
|
-
args: [{
|
|
52
|
-
imports: [DECLARATIONS],
|
|
53
|
-
exports: [DECLARATIONS],
|
|
54
|
-
providers: [
|
|
55
|
-
IconsService,
|
|
56
|
-
PopupService,
|
|
57
|
-
ResizeBatchService
|
|
58
|
-
]
|
|
59
|
-
}]
|
|
60
|
-
}] });
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { NgModule } from '@angular/core';
|
|
6
|
-
import { TimeSlotDirective, DaySlotDirective } from './event-slot.directive';
|
|
7
|
-
import { DayTimeViewItemComponent } from './day-time-view-item.component';
|
|
8
|
-
import { IconsService } from '@progress/kendo-angular-icons';
|
|
9
|
-
import { ResizeBatchService } from '@progress/kendo-angular-common';
|
|
10
|
-
import { PopupService } from '@progress/kendo-angular-popup';
|
|
11
|
-
import * as i0 from "@angular/core";
|
|
12
|
-
const DIRECTIVES = [TimeSlotDirective, DaySlotDirective, DayTimeViewItemComponent];
|
|
13
|
-
/**
|
|
14
|
-
* @hidden
|
|
15
|
-
*
|
|
16
|
-
* As of package v17, the `DayTimeModule` is deprecated and can
|
|
17
|
-
* be removed in a future major version. We recommend using `SchedulerModule`.
|
|
18
|
-
*/
|
|
19
|
-
export class DayTimeModule {
|
|
20
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DayTimeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
21
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: DayTimeModule, imports: [TimeSlotDirective, DaySlotDirective, DayTimeViewItemComponent], exports: [TimeSlotDirective, DaySlotDirective, DayTimeViewItemComponent] });
|
|
22
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DayTimeModule, providers: [
|
|
23
|
-
IconsService,
|
|
24
|
-
PopupService,
|
|
25
|
-
ResizeBatchService
|
|
26
|
-
], imports: [DayTimeViewItemComponent] });
|
|
27
|
-
}
|
|
28
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DayTimeModule, decorators: [{
|
|
29
|
-
type: NgModule,
|
|
30
|
-
args: [{
|
|
31
|
-
imports: [DIRECTIVES],
|
|
32
|
-
exports: [DIRECTIVES],
|
|
33
|
-
providers: [
|
|
34
|
-
IconsService,
|
|
35
|
-
PopupService,
|
|
36
|
-
ResizeBatchService
|
|
37
|
-
]
|
|
38
|
-
}]
|
|
39
|
-
}] });
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { NgModule } from '@angular/core';
|
|
6
|
-
import { MonthViewComponent } from './month-view.component';
|
|
7
|
-
import { MultiWeekViewComponent } from './multi-week-view.component';
|
|
8
|
-
import { IconsService } from '@progress/kendo-angular-icons';
|
|
9
|
-
import { ResizeBatchService } from '@progress/kendo-angular-common';
|
|
10
|
-
import { PopupService } from '@progress/kendo-angular-popup';
|
|
11
|
-
import * as i0 from "@angular/core";
|
|
12
|
-
/**
|
|
13
|
-
* @hidden
|
|
14
|
-
*
|
|
15
|
-
* As of package v17, the `MonthViewModule` is deprecated and can
|
|
16
|
-
* be removed in a future major version. We recommend using `SchedulerModule`.
|
|
17
|
-
*/
|
|
18
|
-
export class MonthViewModule {
|
|
19
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MonthViewModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: MonthViewModule, imports: [MonthViewComponent,
|
|
21
|
-
MultiWeekViewComponent], exports: [MonthViewComponent,
|
|
22
|
-
MultiWeekViewComponent] });
|
|
23
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MonthViewModule, providers: [
|
|
24
|
-
IconsService,
|
|
25
|
-
PopupService,
|
|
26
|
-
ResizeBatchService
|
|
27
|
-
], imports: [MonthViewComponent,
|
|
28
|
-
MultiWeekViewComponent] });
|
|
29
|
-
}
|
|
30
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MonthViewModule, decorators: [{
|
|
31
|
-
type: NgModule,
|
|
32
|
-
args: [{
|
|
33
|
-
imports: [
|
|
34
|
-
MonthViewComponent,
|
|
35
|
-
MultiWeekViewComponent
|
|
36
|
-
],
|
|
37
|
-
exports: [
|
|
38
|
-
MonthViewComponent,
|
|
39
|
-
MultiWeekViewComponent
|
|
40
|
-
],
|
|
41
|
-
providers: [
|
|
42
|
-
IconsService,
|
|
43
|
-
PopupService,
|
|
44
|
-
ResizeBatchService
|
|
45
|
-
]
|
|
46
|
-
}]
|
|
47
|
-
}] });
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { NgModule } from '@angular/core';
|
|
6
|
-
import { DayViewComponent } from './day-view.component';
|
|
7
|
-
import { MultiDayViewComponent } from './multi-day-view.component';
|
|
8
|
-
import { WeekViewComponent } from './week-view.component';
|
|
9
|
-
import { WorkWeekViewComponent } from './work-week-view.component';
|
|
10
|
-
import { ResizeBatchService } from '@progress/kendo-angular-common';
|
|
11
|
-
import { IconsService } from '@progress/kendo-angular-icons';
|
|
12
|
-
import { PopupService } from '@progress/kendo-angular-popup';
|
|
13
|
-
import * as i0 from "@angular/core";
|
|
14
|
-
const PUBLIC_DIRECTIVES = [
|
|
15
|
-
DayViewComponent,
|
|
16
|
-
MultiDayViewComponent,
|
|
17
|
-
WeekViewComponent,
|
|
18
|
-
WorkWeekViewComponent
|
|
19
|
-
];
|
|
20
|
-
/**
|
|
21
|
-
* @hidden
|
|
22
|
-
*
|
|
23
|
-
* As of package v17, the `MultiDayViewModule` is deprecated and can
|
|
24
|
-
* be removed in a future major version. We recommend using `SchedulerModule`.
|
|
25
|
-
*/
|
|
26
|
-
export class MultiDayViewModule {
|
|
27
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MultiDayViewModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
28
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: MultiDayViewModule, imports: [DayViewComponent,
|
|
29
|
-
MultiDayViewComponent,
|
|
30
|
-
WeekViewComponent,
|
|
31
|
-
WorkWeekViewComponent], exports: [DayViewComponent,
|
|
32
|
-
MultiDayViewComponent,
|
|
33
|
-
WeekViewComponent,
|
|
34
|
-
WorkWeekViewComponent] });
|
|
35
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MultiDayViewModule, providers: [
|
|
36
|
-
IconsService,
|
|
37
|
-
PopupService,
|
|
38
|
-
ResizeBatchService
|
|
39
|
-
], imports: [PUBLIC_DIRECTIVES] });
|
|
40
|
-
}
|
|
41
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MultiDayViewModule, decorators: [{
|
|
42
|
-
type: NgModule,
|
|
43
|
-
args: [{
|
|
44
|
-
imports: [PUBLIC_DIRECTIVES],
|
|
45
|
-
exports: [PUBLIC_DIRECTIVES],
|
|
46
|
-
providers: [
|
|
47
|
-
IconsService,
|
|
48
|
-
PopupService,
|
|
49
|
-
ResizeBatchService
|
|
50
|
-
]
|
|
51
|
-
}]
|
|
52
|
-
}] });
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { NgModule } from '@angular/core';
|
|
6
|
-
import { TimelineViewComponent } from './timeline-view.component';
|
|
7
|
-
import { TimelineWeekViewComponent } from './timeline-week-view.component';
|
|
8
|
-
import { TimelineMonthViewComponent } from './timeline-month-view.component';
|
|
9
|
-
import { ResizeBatchService } from '@progress/kendo-angular-common';
|
|
10
|
-
import { IconsService } from '@progress/kendo-angular-icons';
|
|
11
|
-
import { PopupService } from '@progress/kendo-angular-popup';
|
|
12
|
-
import * as i0 from "@angular/core";
|
|
13
|
-
const PUBLIC_DIRECTIVES = [
|
|
14
|
-
TimelineViewComponent,
|
|
15
|
-
TimelineWeekViewComponent,
|
|
16
|
-
TimelineMonthViewComponent
|
|
17
|
-
];
|
|
18
|
-
/**
|
|
19
|
-
* @hidden
|
|
20
|
-
*
|
|
21
|
-
* As of package v17, the `TimelineViewModule` is deprecated and can
|
|
22
|
-
* be removed in a future major version. We recommend using `SchedulerModule`.
|
|
23
|
-
*/
|
|
24
|
-
export class TimelineViewModule {
|
|
25
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TimelineViewModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
26
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: TimelineViewModule, imports: [TimelineViewComponent,
|
|
27
|
-
TimelineWeekViewComponent,
|
|
28
|
-
TimelineMonthViewComponent], exports: [TimelineViewComponent,
|
|
29
|
-
TimelineWeekViewComponent,
|
|
30
|
-
TimelineMonthViewComponent] });
|
|
31
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TimelineViewModule, providers: [
|
|
32
|
-
IconsService,
|
|
33
|
-
PopupService,
|
|
34
|
-
ResizeBatchService
|
|
35
|
-
], imports: [PUBLIC_DIRECTIVES] });
|
|
36
|
-
}
|
|
37
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TimelineViewModule, decorators: [{
|
|
38
|
-
type: NgModule,
|
|
39
|
-
args: [{
|
|
40
|
-
imports: [PUBLIC_DIRECTIVES],
|
|
41
|
-
exports: [PUBLIC_DIRECTIVES],
|
|
42
|
-
providers: [
|
|
43
|
-
IconsService,
|
|
44
|
-
PopupService,
|
|
45
|
-
ResizeBatchService
|
|
46
|
-
]
|
|
47
|
-
}]
|
|
48
|
-
}] });
|
package/shared.module.d.ts
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "./navigation/focusable.directive";
|
|
7
|
-
import * as i2 from "./views/timeline/utils";
|
|
8
|
-
/**
|
|
9
|
-
* @hidden
|
|
10
|
-
*
|
|
11
|
-
* As of package v17, the `SharedModule` is deprecated and can
|
|
12
|
-
* be removed in a future major version. We recommend using `SchedulerModule`.
|
|
13
|
-
*/
|
|
14
|
-
export declare class SharedModule {
|
|
15
|
-
static exports(): any[];
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, never, [typeof i1.FocusableDirective, typeof i2.SortPipe], [typeof i1.FocusableDirective, typeof i2.SortPipe]>;
|
|
18
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
|
19
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "./view-footer.component";
|
|
7
|
-
import * as i2 from "./work-hours-footer.directive";
|
|
8
|
-
import * as i3 from "./repeat.pipe";
|
|
9
|
-
import * as i4 from "./resource-iterator.pipe";
|
|
10
|
-
import * as i5 from "./hint-container.component";
|
|
11
|
-
import * as i6 from "./resize-hint.component";
|
|
12
|
-
/**
|
|
13
|
-
* @hidden
|
|
14
|
-
*
|
|
15
|
-
* As of package v17, the `ViewsSharedModule` is deprecated and can
|
|
16
|
-
* be removed in a future major version. We recommend using `SchedulerModule`.
|
|
17
|
-
*/
|
|
18
|
-
export declare class ViewsSharedModule {
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ViewsSharedModule, never>;
|
|
20
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ViewsSharedModule, never, [typeof i1.ViewFooterComponent, typeof i2.WorkHoursFooterDirective, typeof i3.RepeatPipe, typeof i4.ResourceIteratorPipe, typeof i5.HintContainerComponent, typeof i6.ResizeHintComponent], [typeof i1.ViewFooterComponent, typeof i2.WorkHoursFooterDirective, typeof i3.RepeatPipe, typeof i4.ResourceIteratorPipe, typeof i5.HintContainerComponent, typeof i6.ResizeHintComponent]>;
|
|
21
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ViewsSharedModule>;
|
|
22
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "./event-slot.directive";
|
|
7
|
-
import * as i2 from "./day-time-view-item.component";
|
|
8
|
-
/**
|
|
9
|
-
* @hidden
|
|
10
|
-
*
|
|
11
|
-
* As of package v17, the `DayTimeModule` is deprecated and can
|
|
12
|
-
* be removed in a future major version. We recommend using `SchedulerModule`.
|
|
13
|
-
*/
|
|
14
|
-
export declare class DayTimeModule {
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DayTimeModule, never>;
|
|
16
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DayTimeModule, never, [typeof i1.TimeSlotDirective, typeof i1.DaySlotDirective, typeof i2.DayTimeViewItemComponent], [typeof i1.TimeSlotDirective, typeof i1.DaySlotDirective, typeof i2.DayTimeViewItemComponent]>;
|
|
17
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<DayTimeModule>;
|
|
18
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "./month-view.component";
|
|
7
|
-
import * as i2 from "./multi-week-view.component";
|
|
8
|
-
/**
|
|
9
|
-
* @hidden
|
|
10
|
-
*
|
|
11
|
-
* As of package v17, the `MonthViewModule` is deprecated and can
|
|
12
|
-
* be removed in a future major version. We recommend using `SchedulerModule`.
|
|
13
|
-
*/
|
|
14
|
-
export declare class MonthViewModule {
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MonthViewModule, never>;
|
|
16
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MonthViewModule, never, [typeof i1.MonthViewComponent, typeof i2.MultiWeekViewComponent], [typeof i1.MonthViewComponent, typeof i2.MultiWeekViewComponent]>;
|
|
17
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MonthViewModule>;
|
|
18
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "./day-view.component";
|
|
7
|
-
import * as i2 from "./multi-day-view.component";
|
|
8
|
-
import * as i3 from "./week-view.component";
|
|
9
|
-
import * as i4 from "./work-week-view.component";
|
|
10
|
-
/**
|
|
11
|
-
* @hidden
|
|
12
|
-
*
|
|
13
|
-
* As of package v17, the `MultiDayViewModule` is deprecated and can
|
|
14
|
-
* be removed in a future major version. We recommend using `SchedulerModule`.
|
|
15
|
-
*/
|
|
16
|
-
export declare class MultiDayViewModule {
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MultiDayViewModule, never>;
|
|
18
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MultiDayViewModule, never, [typeof i1.DayViewComponent, typeof i2.MultiDayViewComponent, typeof i3.WeekViewComponent, typeof i4.WorkWeekViewComponent], [typeof i1.DayViewComponent, typeof i2.MultiDayViewComponent, typeof i3.WeekViewComponent, typeof i4.WorkWeekViewComponent]>;
|
|
19
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MultiDayViewModule>;
|
|
20
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "./timeline-view.component";
|
|
7
|
-
import * as i2 from "./timeline-week-view.component";
|
|
8
|
-
import * as i3 from "./timeline-month-view.component";
|
|
9
|
-
/**
|
|
10
|
-
* @hidden
|
|
11
|
-
*
|
|
12
|
-
* As of package v17, the `TimelineViewModule` is deprecated and can
|
|
13
|
-
* be removed in a future major version. We recommend using `SchedulerModule`.
|
|
14
|
-
*/
|
|
15
|
-
export declare class TimelineViewModule {
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TimelineViewModule, never>;
|
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TimelineViewModule, never, [typeof i1.TimelineViewComponent, typeof i2.TimelineWeekViewComponent, typeof i3.TimelineMonthViewComponent], [typeof i1.TimelineViewComponent, typeof i2.TimelineWeekViewComponent, typeof i3.TimelineMonthViewComponent]>;
|
|
18
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<TimelineViewModule>;
|
|
19
|
-
}
|