@progress/kendo-angular-scheduler 16.9.1-develop.4 → 16.10.0-develop.2
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/esm2020/navigation/focus.service.mjs +27 -7
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/scheduler.component.mjs +33 -2
- package/esm2020/views/common/base-view.mjs +12 -1
- package/esm2020/views/common/configuration-view-base.mjs +16 -3
- package/esm2020/views/day-time/day-time-view-base.mjs +9 -1
- package/esm2020/views/multi-day/day-view.component.mjs +5 -4
- package/esm2020/views/multi-day/multi-day-view.component.mjs +5 -4
- package/esm2020/views/multi-day/week-view.component.mjs +5 -4
- package/esm2020/views/multi-day/work-week-view.component.mjs +5 -4
- package/esm2020/views/timeline/timeline-month-view.component.mjs +5 -4
- package/esm2020/views/timeline/timeline-view.component.mjs +5 -4
- package/esm2020/views/timeline/timeline-week-view.component.mjs +5 -4
- package/esm2020/views/view-state.service.mjs +6 -2
- package/fesm2015/progress-kendo-angular-scheduler.mjs +134 -46
- package/fesm2020/progress-kendo-angular-scheduler.mjs +133 -46
- package/navigation/focus.service.d.ts +1 -0
- package/package.json +15 -15
- package/scheduler.component.d.ts +19 -1
- package/schematics/ngAdd/index.js +3 -3
- package/views/common/base-view.d.ts +4 -1
- package/views/common/configuration-view-base.d.ts +8 -2
- package/views/day-time/day-time-view-base.d.ts +9 -1
- package/views/view-state.service.d.ts +6 -2
|
@@ -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: '16.
|
|
45
|
+
publishDate: 1726673961,
|
|
46
|
+
version: '16.10.0-develop.2',
|
|
47
47
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
48
48
|
};
|
|
49
49
|
|
|
@@ -919,6 +919,10 @@ class ViewStateService {
|
|
|
919
919
|
* @hidden
|
|
920
920
|
*/
|
|
921
921
|
this.toggleWorkHours = new Subject();
|
|
922
|
+
/**
|
|
923
|
+
* @hidden
|
|
924
|
+
*/
|
|
925
|
+
this.toolbarVisibilityByView = new Map();
|
|
922
926
|
this.dateRangeSource = new BehaviorSubject(emptyDateRange());
|
|
923
927
|
this.nextDateSource = new Subject();
|
|
924
928
|
this.navigateSource = new Subject();
|
|
@@ -968,8 +972,8 @@ class ViewStateService {
|
|
|
968
972
|
/**
|
|
969
973
|
* Notifies the Scheduler that the view options have been changed.
|
|
970
974
|
*/
|
|
971
|
-
notifyOptionsChange() {
|
|
972
|
-
this.optionsChangeSource.next(
|
|
975
|
+
notifyOptionsChange(changes) {
|
|
976
|
+
this.optionsChangeSource.next(changes);
|
|
973
977
|
}
|
|
974
978
|
/**
|
|
975
979
|
* Emits a DOM event to the Scheduler.
|
|
@@ -1446,6 +1450,7 @@ class FocusService {
|
|
|
1446
1450
|
this.items = new Set();
|
|
1447
1451
|
this.elementMap = new WeakMap();
|
|
1448
1452
|
this.subs = new Subscription();
|
|
1453
|
+
this.hasContentRendered = false;
|
|
1449
1454
|
this.subs.add(this.domEvents.focus.subscribe(e => this.onFocusIn(e)));
|
|
1450
1455
|
this.subs.add(this.domEvents.focusOut.subscribe(() => this.onFocusOut()));
|
|
1451
1456
|
}
|
|
@@ -1466,23 +1471,42 @@ class FocusService {
|
|
|
1466
1471
|
item.toggle(true);
|
|
1467
1472
|
}
|
|
1468
1473
|
const items = Array.from(this.focusableItems);
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
items.splice(newContentIndex, 0, item);
|
|
1472
|
-
this.items = new Set(items);
|
|
1474
|
+
if (item.containerType !== 'content') {
|
|
1475
|
+
this.items.add(item);
|
|
1473
1476
|
}
|
|
1474
1477
|
else {
|
|
1475
|
-
|
|
1478
|
+
const newContentIndex = items.map(item => item.containerType).lastIndexOf('content') + 1;
|
|
1479
|
+
const hasFooter = items.find(item => item.containerType === 'footer');
|
|
1480
|
+
if (newContentIndex > 0) {
|
|
1481
|
+
// ensure that new events are positioned after the rest of the events for correct navigation sequence
|
|
1482
|
+
items.splice(newContentIndex, 0, item);
|
|
1483
|
+
this.items = new Set(items);
|
|
1484
|
+
}
|
|
1485
|
+
else if (hasFooter) {
|
|
1486
|
+
// ensure that the first event is before the footer
|
|
1487
|
+
items.splice(items.length - 1, 0, item);
|
|
1488
|
+
this.items = new Set(items);
|
|
1489
|
+
}
|
|
1490
|
+
else {
|
|
1491
|
+
this.items.add(item);
|
|
1492
|
+
}
|
|
1493
|
+
// activate the first content element if there is one; otherwise, keep the toolbar or footer active
|
|
1494
|
+
if (!this.hasContentRendered) {
|
|
1495
|
+
this.activeItem.toggle(false);
|
|
1496
|
+
this.activeItem = item;
|
|
1497
|
+
item.toggle(true);
|
|
1498
|
+
this.hasContentRendered = true;
|
|
1499
|
+
}
|
|
1476
1500
|
}
|
|
1477
1501
|
this.elementMap.set(item.element.nativeElement, item);
|
|
1478
1502
|
this.toggleWrapper();
|
|
1479
1503
|
}
|
|
1480
1504
|
unregister(item) {
|
|
1481
|
-
this.items.delete(item);
|
|
1482
|
-
this.elementMap.delete(item.element.nativeElement);
|
|
1483
1505
|
if (item === this.activeItem) {
|
|
1484
1506
|
this.activateNext();
|
|
1485
1507
|
}
|
|
1508
|
+
this.items.delete(item);
|
|
1509
|
+
this.elementMap.delete(item.element.nativeElement);
|
|
1486
1510
|
this.toggleWrapper();
|
|
1487
1511
|
}
|
|
1488
1512
|
focus() {
|
|
@@ -6536,6 +6560,16 @@ class SchedulerComponent {
|
|
|
6536
6560
|
* @default true
|
|
6537
6561
|
*/
|
|
6538
6562
|
this.highlightOngoingEvents = true;
|
|
6563
|
+
/**
|
|
6564
|
+
* Specifies whether to display the toolbar of the Scheduler.
|
|
6565
|
+
* @default true
|
|
6566
|
+
*/
|
|
6567
|
+
this.showToolbar = true;
|
|
6568
|
+
/**
|
|
6569
|
+
* Specifies whether to display the footer of the Scheduler.
|
|
6570
|
+
* @default true
|
|
6571
|
+
*/
|
|
6572
|
+
this.showFooter = true;
|
|
6539
6573
|
/**
|
|
6540
6574
|
* A callback that executes for each slot of the Scheduler view.
|
|
6541
6575
|
* If it returns `true`, the `k-selected` CSS class will be added to the cell, making it visibly selected.
|
|
@@ -6735,6 +6769,13 @@ class SchedulerComponent {
|
|
|
6735
6769
|
get modelFields() {
|
|
6736
6770
|
return this._modelFields;
|
|
6737
6771
|
}
|
|
6772
|
+
/**
|
|
6773
|
+
* @hidden
|
|
6774
|
+
*/
|
|
6775
|
+
get viewToolbar() {
|
|
6776
|
+
var _a;
|
|
6777
|
+
return (_a = this.viewState) === null || _a === void 0 ? void 0 : _a.toolbarVisibilityByView.get(this.selectedView);
|
|
6778
|
+
}
|
|
6738
6779
|
ngOnInit() {
|
|
6739
6780
|
if (!this.selectedDate) {
|
|
6740
6781
|
this.selectedDate = todayDate();
|
|
@@ -6868,7 +6909,8 @@ class SchedulerComponent {
|
|
|
6868
6909
|
if (anyChanged([
|
|
6869
6910
|
'group', 'resources', 'min', 'max', 'showWorkHours', 'startTime', 'scrollTime', 'endTime', 'eventHeight',
|
|
6870
6911
|
'workDayStart', 'workDayEnd', 'workWeekStart', 'workWeekEnd', 'weekStart', 'slotDuration', 'slotDivisions',
|
|
6871
|
-
'editable', 'timezone', 'slotClass', 'slotFill', 'columnWidth', 'eventClass', 'eventStyles', 'isSlotSelected',
|
|
6912
|
+
'editable', 'timezone', 'slotClass', 'slotFill', 'columnWidth', 'eventClass', 'eventStyles', 'isSlotSelected',
|
|
6913
|
+
'selectable', 'allDaySlot', 'showToolbar', 'showFooter'
|
|
6872
6914
|
], changes)) {
|
|
6873
6915
|
this.notifyOptionsChange(changes);
|
|
6874
6916
|
}
|
|
@@ -7078,6 +7120,12 @@ class SchedulerComponent {
|
|
|
7078
7120
|
focus() {
|
|
7079
7121
|
this.zone.onStable.pipe(take(1)).subscribe(() => this.focusService.focus());
|
|
7080
7122
|
}
|
|
7123
|
+
/**
|
|
7124
|
+
* @hidden
|
|
7125
|
+
*/
|
|
7126
|
+
get toolbarVisibilityState() {
|
|
7127
|
+
return isPresent(this.viewToolbar) ? this.viewToolbar : this.showToolbar;
|
|
7128
|
+
}
|
|
7081
7129
|
isInRange(date) {
|
|
7082
7130
|
return (!this.min || this.min <= date) && (!this.max || date <= this.max);
|
|
7083
7131
|
}
|
|
@@ -7118,6 +7166,8 @@ class SchedulerComponent {
|
|
|
7118
7166
|
timezone: this.timezone,
|
|
7119
7167
|
currentTimeMarker: this.currentTimeMarker,
|
|
7120
7168
|
highlightOngoingEvents: this.highlightOngoingEvents,
|
|
7169
|
+
showToolbar: this.showToolbar,
|
|
7170
|
+
showFooter: this.showFooter,
|
|
7121
7171
|
slotClass: this.slotClass,
|
|
7122
7172
|
slotFill: this.slotFill,
|
|
7123
7173
|
columnWidth: this.columnWidth,
|
|
@@ -7249,7 +7299,7 @@ class SchedulerComponent {
|
|
|
7249
7299
|
}
|
|
7250
7300
|
}
|
|
7251
7301
|
SchedulerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SchedulerComponent, deps: [{ token: i0.ElementRef }, { token: ViewContextService }, { token: ViewStateService }, { token: EditService }, { token: DialogsService }, { token: i1$2.IntlService }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: PDFService }, { token: i1$1.LocalizationService }, { token: DomEventsService }, { token: i0.Renderer2 }, { token: FocusService }], target: i0.ɵɵFactoryTarget.Component });
|
|
7252
|
-
SchedulerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SchedulerComponent, isStandalone: true, selector: "kendo-scheduler", inputs: { selectedViewIndex: "selectedViewIndex", editable: "editable", selectable: "selectable", min: "min", max: "max", eventHeight: "eventHeight", columnWidth: "columnWidth", showWorkHours: "showWorkHours", startTime: "startTime", endTime: "endTime", workDayStart: "workDayStart", workDayEnd: "workDayEnd", workWeekStart: "workWeekStart", workWeekEnd: "workWeekEnd", weekStart: "weekStart", slotDuration: "slotDuration", slotDivisions: "slotDivisions", slotFill: "slotFill", allDaySlot: "allDaySlot", scrollTime: "scrollTime", group: "group", resources: "resources", loading: "loading", timezone: "timezone", events: "events", selectedDate: "selectedDate", modelFields: "modelFields", currentTimeMarker: "currentTimeMarker", highlightOngoingEvents: "highlightOngoingEvents", slotClass: "slotClass", eventClass: "eventClass", eventStyles: "eventStyles", isSlotSelected: "isSlotSelected" }, outputs: { selectedViewIndexChange: "selectedViewIndexChange", navigate: "navigate", dateChange: "dateChange", slotClick: "slotClick", slotDblClick: "slotDblClick", create: "create", eventClick: "eventClick", eventDblClick: "eventDblClick", eventKeydown: "eventKeydown", cancel: "cancel", save: "save", remove: "remove", resizeStart: "resizeStart", resize: "resize", resizeEnd: "resizeEnd", dragStart: "dragStart", drag: "drag", dragEnd: "dragEnd", slotDragStart: "slotDragStart", slotDrag: "slotDrag", slotDragEnd: "slotDragEnd", pdfExport: "pdfExport", schedulerResize: "schedulerResize" }, host: { properties: { "class.k-scheduler": "this.hostClasses", "attr.role": "this.ariaRole", "class.k-rtl": "this.rtl", "attr.dir": "this.dir" } }, providers: [
|
|
7302
|
+
SchedulerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SchedulerComponent, isStandalone: true, selector: "kendo-scheduler", inputs: { selectedViewIndex: "selectedViewIndex", editable: "editable", selectable: "selectable", min: "min", max: "max", eventHeight: "eventHeight", columnWidth: "columnWidth", showWorkHours: "showWorkHours", startTime: "startTime", endTime: "endTime", workDayStart: "workDayStart", workDayEnd: "workDayEnd", workWeekStart: "workWeekStart", workWeekEnd: "workWeekEnd", weekStart: "weekStart", slotDuration: "slotDuration", slotDivisions: "slotDivisions", slotFill: "slotFill", allDaySlot: "allDaySlot", scrollTime: "scrollTime", group: "group", resources: "resources", loading: "loading", timezone: "timezone", events: "events", selectedDate: "selectedDate", modelFields: "modelFields", currentTimeMarker: "currentTimeMarker", highlightOngoingEvents: "highlightOngoingEvents", showToolbar: "showToolbar", showFooter: "showFooter", slotClass: "slotClass", eventClass: "eventClass", eventStyles: "eventStyles", isSlotSelected: "isSlotSelected" }, outputs: { selectedViewIndexChange: "selectedViewIndexChange", navigate: "navigate", dateChange: "dateChange", slotClick: "slotClick", slotDblClick: "slotDblClick", create: "create", eventClick: "eventClick", eventDblClick: "eventDblClick", eventKeydown: "eventKeydown", cancel: "cancel", save: "save", remove: "remove", resizeStart: "resizeStart", resize: "resize", resizeEnd: "resizeEnd", dragStart: "dragStart", drag: "drag", dragEnd: "dragEnd", slotDragStart: "slotDragStart", slotDrag: "slotDrag", slotDragEnd: "slotDragEnd", pdfExport: "pdfExport", schedulerResize: "schedulerResize" }, host: { properties: { "class.k-scheduler": "this.hostClasses", "attr.role": "this.ariaRole", "class.k-rtl": "this.rtl", "attr.dir": "this.dir" } }, providers: [
|
|
7253
7303
|
EditService,
|
|
7254
7304
|
DialogsService,
|
|
7255
7305
|
DomEventsService,
|
|
@@ -7567,6 +7617,7 @@ SchedulerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ver
|
|
|
7567
7617
|
</ng-container>
|
|
7568
7618
|
|
|
7569
7619
|
<kendo-scheduler-toolbar
|
|
7620
|
+
*ngIf="toolbarVisibilityState"
|
|
7570
7621
|
[dateRange]="dateRangeStream"
|
|
7571
7622
|
[selectedDate]="selectedDateStream"
|
|
7572
7623
|
[views]="$any(views)"
|
|
@@ -7923,6 +7974,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7923
7974
|
</ng-container>
|
|
7924
7975
|
|
|
7925
7976
|
<kendo-scheduler-toolbar
|
|
7977
|
+
*ngIf="toolbarVisibilityState"
|
|
7926
7978
|
[dateRange]="dateRangeStream"
|
|
7927
7979
|
[selectedDate]="selectedDateStream"
|
|
7928
7980
|
[views]="$any(views)"
|
|
@@ -8028,6 +8080,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8028
8080
|
type: Input
|
|
8029
8081
|
}], highlightOngoingEvents: [{
|
|
8030
8082
|
type: Input
|
|
8083
|
+
}], showToolbar: [{
|
|
8084
|
+
type: Input
|
|
8085
|
+
}], showFooter: [{
|
|
8086
|
+
type: Input
|
|
8031
8087
|
}], slotClass: [{
|
|
8032
8088
|
type: Input
|
|
8033
8089
|
}], eventClass: [{
|
|
@@ -8673,6 +8729,16 @@ class ConfigurationViewBase extends SchedulerView {
|
|
|
8673
8729
|
});
|
|
8674
8730
|
this.subs.add(this.viewContext.optionsChange.subscribe(this.optionsChange.bind(this)));
|
|
8675
8731
|
}
|
|
8732
|
+
/**
|
|
8733
|
+
* Specifies whether to display the toolbar of the Scheduler.
|
|
8734
|
+
*/
|
|
8735
|
+
get showToolbar() {
|
|
8736
|
+
return this._showToolbar;
|
|
8737
|
+
}
|
|
8738
|
+
set showToolbar(value) {
|
|
8739
|
+
this._showToolbar = value;
|
|
8740
|
+
this.viewState.toolbarVisibilityByView.set(this, value);
|
|
8741
|
+
}
|
|
8676
8742
|
/**
|
|
8677
8743
|
* @hidden
|
|
8678
8744
|
*/
|
|
@@ -8703,18 +8769,19 @@ class ConfigurationViewBase extends SchedulerView {
|
|
|
8703
8769
|
get viewWeekStart() {
|
|
8704
8770
|
return this.schedulerOptions.weekStart;
|
|
8705
8771
|
}
|
|
8706
|
-
ngOnChanges(
|
|
8707
|
-
this.viewState.notifyOptionsChange();
|
|
8772
|
+
ngOnChanges(changes) {
|
|
8773
|
+
this.viewState.notifyOptionsChange(changes);
|
|
8708
8774
|
}
|
|
8709
8775
|
ngOnDestroy() {
|
|
8710
8776
|
this.subs.unsubscribe();
|
|
8777
|
+
this.viewState.toolbarVisibilityByView.delete(this);
|
|
8711
8778
|
}
|
|
8712
8779
|
optionsChange(options) {
|
|
8713
8780
|
this.schedulerOptions = options;
|
|
8714
8781
|
}
|
|
8715
8782
|
}
|
|
8716
8783
|
ConfigurationViewBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ConfigurationViewBase, deps: [{ token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: ViewContextService }, { token: ViewStateService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
8717
|
-
ConfigurationViewBase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ConfigurationViewBase, inputs: { slotClass: "slotClass", eventClass: "eventClass", eventStyles: "eventStyles", highlightOngoingEvents: "highlightOngoingEvents" }, queries: [{ propertyName: "eventTemplate", first: true, predicate: EventTemplateDirective, descendants: true }, { propertyName: "groupHeaderTemplate", first: true, predicate: GroupHeaderTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "template", first: true, predicate: ["content"], descendants: true, static: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
8784
|
+
ConfigurationViewBase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ConfigurationViewBase, inputs: { slotClass: "slotClass", eventClass: "eventClass", eventStyles: "eventStyles", highlightOngoingEvents: "highlightOngoingEvents", showToolbar: "showToolbar" }, queries: [{ propertyName: "eventTemplate", first: true, predicate: EventTemplateDirective, descendants: true }, { propertyName: "groupHeaderTemplate", first: true, predicate: GroupHeaderTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "template", first: true, predicate: ["content"], descendants: true, static: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
8718
8785
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ConfigurationViewBase, decorators: [{
|
|
8719
8786
|
type: Directive
|
|
8720
8787
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: ViewContextService }, { type: ViewStateService }]; }, propDecorators: { slotClass: [{
|
|
@@ -8725,6 +8792,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8725
8792
|
type: Input
|
|
8726
8793
|
}], highlightOngoingEvents: [{
|
|
8727
8794
|
type: Input
|
|
8795
|
+
}], showToolbar: [{
|
|
8796
|
+
type: Input
|
|
8728
8797
|
}], template: [{
|
|
8729
8798
|
type: ViewChild,
|
|
8730
8799
|
args: ['content', { static: true }]
|
|
@@ -10415,6 +10484,7 @@ class BaseView {
|
|
|
10415
10484
|
const updateView = this.updateView.bind(this);
|
|
10416
10485
|
this.resourcesByIndex = this.resourcesByIndex.bind(this);
|
|
10417
10486
|
this.subs.add(this.viewContext.selectedDate.subscribe(this.onSelectDate.bind(this)));
|
|
10487
|
+
this.subs.add(this.viewState.optionsChange.subscribe(this.onStateOptionsChange.bind(this)));
|
|
10418
10488
|
this.subs.add(this.viewContext.action.subscribe(this.onAction.bind(this)));
|
|
10419
10489
|
this.subs.add(this.viewContext.execute.subscribe(this.execute.bind(this)));
|
|
10420
10490
|
this.subs.add(this.viewContext.resize.subscribe(() => {
|
|
@@ -10558,6 +10628,7 @@ class BaseView {
|
|
|
10558
10628
|
}
|
|
10559
10629
|
this.changes.next(null);
|
|
10560
10630
|
}
|
|
10631
|
+
this.onStateOptionsChange(options);
|
|
10561
10632
|
}
|
|
10562
10633
|
toggleElement(visible) {
|
|
10563
10634
|
if (this.element) {
|
|
@@ -11296,9 +11367,14 @@ class BaseView {
|
|
|
11296
11367
|
end: this.convertDate(slot.end)
|
|
11297
11368
|
};
|
|
11298
11369
|
}
|
|
11370
|
+
onStateOptionsChange(changes) {
|
|
11371
|
+
if ((changes === null || changes === void 0 ? void 0 : changes.showFooter) || (changes === null || changes === void 0 ? void 0 : changes.showToolbar)) {
|
|
11372
|
+
this.zone.onStable.pipe(take(1)).subscribe(() => this.updateView());
|
|
11373
|
+
}
|
|
11374
|
+
}
|
|
11299
11375
|
}
|
|
11300
11376
|
BaseView.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BaseView, deps: [{ token: ViewContextService }, { token: ViewStateService }, { token: i1$2.IntlService }, { token: BaseSlotService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: PDFService }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i7.ScrollbarWidthService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
11301
|
-
BaseView.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: BaseView, inputs: { eventTemplate: "eventTemplate", groupHeaderTemplate: "groupHeaderTemplate", selectedDateFormat: "selectedDateFormat", selectedShortDateFormat: "selectedShortDateFormat", eventHeight: "eventHeight", slotClass: "slotClass", eventClass: "eventClass", eventStyles: "eventStyles", weekStart: "weekStart" }, viewQueries: [{ propertyName: "content", first: true, predicate: ["content"], descendants: true }, { propertyName: "header", first: true, predicate: ["header"], descendants: true }, { propertyName: "contentTable", first: true, predicate: ["contentTable"], descendants: true }, { propertyName: "times", first: true, predicate: ["times"], descendants: true }, { propertyName: "timesHeader", first: true, predicate: ["timesHeader"], descendants: true }, { propertyName: "timesTable", first: true, predicate: ["timesTable"], descendants: true }, { propertyName: "headerWrap", first: true, predicate: ["headerWrap"], descendants: true }, { propertyName: "hintContainer", first: true, predicate: ["hintContainer"], descendants: true }], usesOnChanges: true, ngImport: i0 });
|
|
11377
|
+
BaseView.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: BaseView, inputs: { eventTemplate: "eventTemplate", groupHeaderTemplate: "groupHeaderTemplate", selectedDateFormat: "selectedDateFormat", selectedShortDateFormat: "selectedShortDateFormat", eventHeight: "eventHeight", showToolbar: "showToolbar", showFooter: "showFooter", slotClass: "slotClass", eventClass: "eventClass", eventStyles: "eventStyles", weekStart: "weekStart" }, viewQueries: [{ propertyName: "content", first: true, predicate: ["content"], descendants: true }, { propertyName: "header", first: true, predicate: ["header"], descendants: true }, { propertyName: "contentTable", first: true, predicate: ["contentTable"], descendants: true }, { propertyName: "times", first: true, predicate: ["times"], descendants: true }, { propertyName: "timesHeader", first: true, predicate: ["timesHeader"], descendants: true }, { propertyName: "timesTable", first: true, predicate: ["timesTable"], descendants: true }, { propertyName: "headerWrap", first: true, predicate: ["headerWrap"], descendants: true }, { propertyName: "hintContainer", first: true, predicate: ["hintContainer"], descendants: true }], usesOnChanges: true, ngImport: i0 });
|
|
11302
11378
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BaseView, decorators: [{
|
|
11303
11379
|
type: Directive
|
|
11304
11380
|
}], ctorParameters: function () { return [{ type: ViewContextService }, { type: ViewStateService }, { type: i1$2.IntlService }, { type: BaseSlotService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: i0.ElementRef }, { type: PDFService }, { type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: i7.ScrollbarWidthService }]; }, propDecorators: { eventTemplate: [{
|
|
@@ -11311,6 +11387,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
11311
11387
|
type: Input
|
|
11312
11388
|
}], eventHeight: [{
|
|
11313
11389
|
type: Input
|
|
11390
|
+
}], showToolbar: [{
|
|
11391
|
+
type: Input
|
|
11392
|
+
}], showFooter: [{
|
|
11393
|
+
type: Input
|
|
11314
11394
|
}], slotClass: [{
|
|
11315
11395
|
type: Input
|
|
11316
11396
|
}], eventClass: [{
|
|
@@ -12901,12 +12981,18 @@ class DayTimeViewBase extends ConfigurationViewBase {
|
|
|
12901
12981
|
get viewScrollTime() {
|
|
12902
12982
|
return this.optionValue('scrollTime');
|
|
12903
12983
|
}
|
|
12984
|
+
/**
|
|
12985
|
+
* @hidden
|
|
12986
|
+
*/
|
|
12987
|
+
get viewShowFooter() {
|
|
12988
|
+
return isPresent(this.showFooter) ? this.showFooter : this.schedulerOptions.showFooter;
|
|
12989
|
+
}
|
|
12904
12990
|
optionValue(name) {
|
|
12905
12991
|
return isPresent(this[name]) ? this[name] : this.schedulerOptions[name];
|
|
12906
12992
|
}
|
|
12907
12993
|
}
|
|
12908
12994
|
DayTimeViewBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DayTimeViewBase, deps: [{ token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: ViewContextService }, { token: ViewStateService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
12909
|
-
DayTimeViewBase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DayTimeViewBase, inputs: { showWorkHours: "showWorkHours", eventHeight: "eventHeight", startTime: "startTime", scrollTime: "scrollTime", endTime: "endTime", workDayStart: "workDayStart", workDayEnd: "workDayEnd", workWeekStart: "workWeekStart", workWeekEnd: "workWeekEnd", slotDuration: "slotDuration", slotDivisions: "slotDivisions", currentTimeMarker: "currentTimeMarker", highlightOngoingEvents: "highlightOngoingEvents" }, queries: [{ propertyName: "timeSlotTemplate", first: true, predicate: TimeSlotTemplateDirective, descendants: true }, { propertyName: "dateHeaderTemplate", first: true, predicate: DateHeaderTemplateDirective, descendants: true }, { propertyName: "majorTimeHeaderTemplate", first: true, predicate: MajorTimeHeaderTemplateDirective, descendants: true }, { propertyName: "minorTimeHeaderTemplate", first: true, predicate: MinorTimeHeaderTemplateDirective, descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
12995
|
+
DayTimeViewBase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DayTimeViewBase, inputs: { showWorkHours: "showWorkHours", showFooter: "showFooter", eventHeight: "eventHeight", startTime: "startTime", scrollTime: "scrollTime", endTime: "endTime", workDayStart: "workDayStart", workDayEnd: "workDayEnd", workWeekStart: "workWeekStart", workWeekEnd: "workWeekEnd", slotDuration: "slotDuration", slotDivisions: "slotDivisions", currentTimeMarker: "currentTimeMarker", highlightOngoingEvents: "highlightOngoingEvents" }, queries: [{ propertyName: "timeSlotTemplate", first: true, predicate: TimeSlotTemplateDirective, descendants: true }, { propertyName: "dateHeaderTemplate", first: true, predicate: DateHeaderTemplateDirective, descendants: true }, { propertyName: "majorTimeHeaderTemplate", first: true, predicate: MajorTimeHeaderTemplateDirective, descendants: true }, { propertyName: "minorTimeHeaderTemplate", first: true, predicate: MinorTimeHeaderTemplateDirective, descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
12910
12996
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DayTimeViewBase, decorators: [{
|
|
12911
12997
|
type: Directive
|
|
12912
12998
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: ViewContextService }, { type: ViewStateService }]; }, propDecorators: { timeSlotTemplate: [{
|
|
@@ -12923,6 +13009,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
12923
13009
|
args: [MinorTimeHeaderTemplateDirective, { static: false }]
|
|
12924
13010
|
}], showWorkHours: [{
|
|
12925
13011
|
type: Input
|
|
13012
|
+
}], showFooter: [{
|
|
13013
|
+
type: Input
|
|
12926
13014
|
}], eventHeight: [{
|
|
12927
13015
|
type: Input
|
|
12928
13016
|
}], startTime: [{
|
|
@@ -15318,9 +15406,9 @@ DayViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", versi
|
|
|
15318
15406
|
[selectedDateFormat]="selectedDateFormat"
|
|
15319
15407
|
[selectedShortDateFormat]="selectedShortDateFormat">
|
|
15320
15408
|
</multi-day-view>
|
|
15321
|
-
<div viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
15409
|
+
<div *ngIf="viewShowFooter" viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
15322
15410
|
</ng-template>
|
|
15323
|
-
`, isInline: true, dependencies: [{ kind: "component", type: MultiDayViewRendererComponent, selector: "multi-day-view", inputs: ["allDaySlot", "name", "slotFill", "allDaySlotTemplate", "allDayEventTemplate"] }, { kind: "component", type: ViewFooterComponent, selector: "[viewFooter]", inputs: ["items"], outputs: ["itemClick"] }, { kind: "directive", type: WorkHoursFooterDirective, selector: "[kendoWorkHoursFooter]", inputs: ["showWorkHours"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
15411
|
+
`, isInline: true, dependencies: [{ kind: "component", type: MultiDayViewRendererComponent, selector: "multi-day-view", inputs: ["allDaySlot", "name", "slotFill", "allDaySlotTemplate", "allDayEventTemplate"] }, { kind: "component", type: ViewFooterComponent, selector: "[viewFooter]", inputs: ["items"], outputs: ["itemClick"] }, { kind: "directive", type: WorkHoursFooterDirective, selector: "[kendoWorkHoursFooter]", inputs: ["showWorkHours"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
15324
15412
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DayViewComponent, decorators: [{
|
|
15325
15413
|
type: Component,
|
|
15326
15414
|
args: [{
|
|
@@ -15363,11 +15451,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
15363
15451
|
[selectedDateFormat]="selectedDateFormat"
|
|
15364
15452
|
[selectedShortDateFormat]="selectedShortDateFormat">
|
|
15365
15453
|
</multi-day-view>
|
|
15366
|
-
<div viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
15454
|
+
<div *ngIf="viewShowFooter" viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
15367
15455
|
</ng-template>
|
|
15368
15456
|
`,
|
|
15369
15457
|
standalone: true,
|
|
15370
|
-
imports: [MultiDayViewRendererComponent, ViewFooterComponent, WorkHoursFooterDirective]
|
|
15458
|
+
imports: [MultiDayViewRendererComponent, ViewFooterComponent, WorkHoursFooterDirective, NgIf]
|
|
15371
15459
|
}]
|
|
15372
15460
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: ViewContextService }, { type: ViewStateService }]; }, propDecorators: { selectedDateFormat: [{
|
|
15373
15461
|
type: Input
|
|
@@ -15476,9 +15564,9 @@ MultiDayViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
15476
15564
|
[selectedDateFormat]="selectedDateFormat"
|
|
15477
15565
|
[selectedShortDateFormat]="selectedShortDateFormat">
|
|
15478
15566
|
</multi-day-view>
|
|
15479
|
-
<div viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
15567
|
+
<div *ngIf="viewShowFooter" viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
15480
15568
|
</ng-template>
|
|
15481
|
-
`, isInline: true, dependencies: [{ kind: "component", type: MultiDayViewRendererComponent, selector: "multi-day-view", inputs: ["allDaySlot", "name", "slotFill", "allDaySlotTemplate", "allDayEventTemplate"] }, { kind: "component", type: ViewFooterComponent, selector: "[viewFooter]", inputs: ["items"], outputs: ["itemClick"] }, { kind: "directive", type: WorkHoursFooterDirective, selector: "[kendoWorkHoursFooter]", inputs: ["showWorkHours"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
15569
|
+
`, isInline: true, dependencies: [{ kind: "component", type: MultiDayViewRendererComponent, selector: "multi-day-view", inputs: ["allDaySlot", "name", "slotFill", "allDaySlotTemplate", "allDayEventTemplate"] }, { kind: "component", type: ViewFooterComponent, selector: "[viewFooter]", inputs: ["items"], outputs: ["itemClick"] }, { kind: "directive", type: WorkHoursFooterDirective, selector: "[kendoWorkHoursFooter]", inputs: ["showWorkHours"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
15482
15570
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultiDayViewComponent, decorators: [{
|
|
15483
15571
|
type: Component,
|
|
15484
15572
|
args: [{
|
|
@@ -15523,11 +15611,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
15523
15611
|
[selectedDateFormat]="selectedDateFormat"
|
|
15524
15612
|
[selectedShortDateFormat]="selectedShortDateFormat">
|
|
15525
15613
|
</multi-day-view>
|
|
15526
|
-
<div viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
15614
|
+
<div *ngIf="viewShowFooter" viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
15527
15615
|
</ng-template>
|
|
15528
15616
|
`,
|
|
15529
15617
|
standalone: true,
|
|
15530
|
-
imports: [MultiDayViewRendererComponent, ViewFooterComponent, WorkHoursFooterDirective]
|
|
15618
|
+
imports: [MultiDayViewRendererComponent, ViewFooterComponent, WorkHoursFooterDirective, NgIf]
|
|
15531
15619
|
}]
|
|
15532
15620
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: ViewContextService }, { type: ViewStateService }]; }, propDecorators: { selectedDateFormat: [{
|
|
15533
15621
|
type: Input
|
|
@@ -15622,9 +15710,9 @@ WeekViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
|
|
|
15622
15710
|
[selectedDateFormat]="selectedDateFormat"
|
|
15623
15711
|
[selectedShortDateFormat]="selectedShortDateFormat">
|
|
15624
15712
|
</multi-day-view>
|
|
15625
|
-
<div viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
15713
|
+
<div *ngIf="viewShowFooter" viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
15626
15714
|
</ng-template>
|
|
15627
|
-
`, isInline: true, dependencies: [{ kind: "component", type: MultiDayViewRendererComponent, selector: "multi-day-view", inputs: ["allDaySlot", "name", "slotFill", "allDaySlotTemplate", "allDayEventTemplate"] }, { kind: "component", type: ViewFooterComponent, selector: "[viewFooter]", inputs: ["items"], outputs: ["itemClick"] }, { kind: "directive", type: WorkHoursFooterDirective, selector: "[kendoWorkHoursFooter]", inputs: ["showWorkHours"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
15715
|
+
`, isInline: true, dependencies: [{ kind: "component", type: MultiDayViewRendererComponent, selector: "multi-day-view", inputs: ["allDaySlot", "name", "slotFill", "allDaySlotTemplate", "allDayEventTemplate"] }, { kind: "component", type: ViewFooterComponent, selector: "[viewFooter]", inputs: ["items"], outputs: ["itemClick"] }, { kind: "directive", type: WorkHoursFooterDirective, selector: "[kendoWorkHoursFooter]", inputs: ["showWorkHours"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
15628
15716
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WeekViewComponent, decorators: [{
|
|
15629
15717
|
type: Component,
|
|
15630
15718
|
args: [{
|
|
@@ -15670,11 +15758,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
15670
15758
|
[selectedDateFormat]="selectedDateFormat"
|
|
15671
15759
|
[selectedShortDateFormat]="selectedShortDateFormat">
|
|
15672
15760
|
</multi-day-view>
|
|
15673
|
-
<div viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
15761
|
+
<div *ngIf="viewShowFooter" viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
15674
15762
|
</ng-template>
|
|
15675
15763
|
`,
|
|
15676
15764
|
standalone: true,
|
|
15677
|
-
imports: [MultiDayViewRendererComponent, ViewFooterComponent, WorkHoursFooterDirective]
|
|
15765
|
+
imports: [MultiDayViewRendererComponent, ViewFooterComponent, WorkHoursFooterDirective, NgIf]
|
|
15678
15766
|
}]
|
|
15679
15767
|
}], ctorParameters: function () { return [{ type: i1$2.IntlService }, { type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: ViewContextService }, { type: ViewStateService }]; }, propDecorators: { selectedDateFormat: [{
|
|
15680
15768
|
type: Input
|
|
@@ -15771,9 +15859,9 @@ WorkWeekViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
15771
15859
|
[selectedDateFormat]="selectedDateFormat"
|
|
15772
15860
|
[selectedShortDateFormat]="selectedShortDateFormat">
|
|
15773
15861
|
</multi-day-view>
|
|
15774
|
-
<div viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
15862
|
+
<div *ngIf="viewShowFooter" viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
15775
15863
|
</ng-template>
|
|
15776
|
-
`, isInline: true, dependencies: [{ kind: "component", type: MultiDayViewRendererComponent, selector: "multi-day-view", inputs: ["allDaySlot", "name", "slotFill", "allDaySlotTemplate", "allDayEventTemplate"] }, { kind: "component", type: ViewFooterComponent, selector: "[viewFooter]", inputs: ["items"], outputs: ["itemClick"] }, { kind: "directive", type: WorkHoursFooterDirective, selector: "[kendoWorkHoursFooter]", inputs: ["showWorkHours"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
15864
|
+
`, isInline: true, dependencies: [{ kind: "component", type: MultiDayViewRendererComponent, selector: "multi-day-view", inputs: ["allDaySlot", "name", "slotFill", "allDaySlotTemplate", "allDayEventTemplate"] }, { kind: "component", type: ViewFooterComponent, selector: "[viewFooter]", inputs: ["items"], outputs: ["itemClick"] }, { kind: "directive", type: WorkHoursFooterDirective, selector: "[kendoWorkHoursFooter]", inputs: ["showWorkHours"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
15777
15865
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WorkWeekViewComponent, decorators: [{
|
|
15778
15866
|
type: Component,
|
|
15779
15867
|
args: [{
|
|
@@ -15820,11 +15908,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
15820
15908
|
[selectedDateFormat]="selectedDateFormat"
|
|
15821
15909
|
[selectedShortDateFormat]="selectedShortDateFormat">
|
|
15822
15910
|
</multi-day-view>
|
|
15823
|
-
<div viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
15911
|
+
<div *ngIf="viewShowFooter" viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
15824
15912
|
</ng-template>
|
|
15825
15913
|
`,
|
|
15826
15914
|
standalone: true,
|
|
15827
|
-
imports: [MultiDayViewRendererComponent, ViewFooterComponent, WorkHoursFooterDirective]
|
|
15915
|
+
imports: [MultiDayViewRendererComponent, ViewFooterComponent, WorkHoursFooterDirective, NgIf]
|
|
15828
15916
|
}]
|
|
15829
15917
|
}], ctorParameters: function () { return [{ type: i1$2.IntlService }, { type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: ViewContextService }, { type: ViewStateService }]; } });
|
|
15830
15918
|
|
|
@@ -16535,9 +16623,9 @@ TimelineMonthViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0
|
|
|
16535
16623
|
[selectedDateFormat]="selectedDateFormat"
|
|
16536
16624
|
[selectedShortDateFormat]="selectedShortDateFormat">
|
|
16537
16625
|
</timeline-multi-day-view>
|
|
16538
|
-
<div viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
16626
|
+
<div *ngIf="viewShowFooter" viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
16539
16627
|
</ng-template>
|
|
16540
|
-
`, isInline: true, dependencies: [{ kind: "component", type: TimelineMultiDayViewComponent, selector: "timeline-multi-day-view", inputs: ["name", "columnWidth", "viewName"] }, { kind: "component", type: ViewFooterComponent, selector: "[viewFooter]", inputs: ["items"], outputs: ["itemClick"] }, { kind: "directive", type: WorkHoursFooterDirective, selector: "[kendoWorkHoursFooter]", inputs: ["showWorkHours"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
16628
|
+
`, isInline: true, dependencies: [{ kind: "component", type: TimelineMultiDayViewComponent, selector: "timeline-multi-day-view", inputs: ["name", "columnWidth", "viewName"] }, { kind: "component", type: ViewFooterComponent, selector: "[viewFooter]", inputs: ["items"], outputs: ["itemClick"] }, { kind: "directive", type: WorkHoursFooterDirective, selector: "[kendoWorkHoursFooter]", inputs: ["showWorkHours"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
16541
16629
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimelineMonthViewComponent, decorators: [{
|
|
16542
16630
|
type: Component,
|
|
16543
16631
|
args: [{
|
|
@@ -16581,11 +16669,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
16581
16669
|
[selectedDateFormat]="selectedDateFormat"
|
|
16582
16670
|
[selectedShortDateFormat]="selectedShortDateFormat">
|
|
16583
16671
|
</timeline-multi-day-view>
|
|
16584
|
-
<div viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
16672
|
+
<div *ngIf="viewShowFooter" viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
16585
16673
|
</ng-template>
|
|
16586
16674
|
`,
|
|
16587
16675
|
standalone: true,
|
|
16588
|
-
imports: [TimelineMultiDayViewComponent, ViewFooterComponent, WorkHoursFooterDirective]
|
|
16676
|
+
imports: [TimelineMultiDayViewComponent, ViewFooterComponent, WorkHoursFooterDirective, NgIf]
|
|
16589
16677
|
}]
|
|
16590
16678
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: ViewContextService }, { type: ViewStateService }]; }, propDecorators: { selectedDateFormat: [{
|
|
16591
16679
|
type: Input
|
|
@@ -16693,9 +16781,9 @@ TimelineViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
16693
16781
|
[selectedDateFormat]="selectedDateFormat"
|
|
16694
16782
|
[selectedShortDateFormat]="selectedShortDateFormat">
|
|
16695
16783
|
</timeline-multi-day-view>
|
|
16696
|
-
<div viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
16784
|
+
<div *ngIf="viewShowFooter" viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
16697
16785
|
</ng-template>
|
|
16698
|
-
`, isInline: true, dependencies: [{ kind: "component", type: TimelineMultiDayViewComponent, selector: "timeline-multi-day-view", inputs: ["name", "columnWidth", "viewName"] }, { kind: "component", type: ViewFooterComponent, selector: "[viewFooter]", inputs: ["items"], outputs: ["itemClick"] }, { kind: "directive", type: WorkHoursFooterDirective, selector: "[kendoWorkHoursFooter]", inputs: ["showWorkHours"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
16786
|
+
`, isInline: true, dependencies: [{ kind: "component", type: TimelineMultiDayViewComponent, selector: "timeline-multi-day-view", inputs: ["name", "columnWidth", "viewName"] }, { kind: "component", type: ViewFooterComponent, selector: "[viewFooter]", inputs: ["items"], outputs: ["itemClick"] }, { kind: "directive", type: WorkHoursFooterDirective, selector: "[kendoWorkHoursFooter]", inputs: ["showWorkHours"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
16699
16787
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimelineViewComponent, decorators: [{
|
|
16700
16788
|
type: Component,
|
|
16701
16789
|
args: [{
|
|
@@ -16736,11 +16824,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
16736
16824
|
[selectedDateFormat]="selectedDateFormat"
|
|
16737
16825
|
[selectedShortDateFormat]="selectedShortDateFormat">
|
|
16738
16826
|
</timeline-multi-day-view>
|
|
16739
|
-
<div viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
16827
|
+
<div *ngIf="viewShowFooter" viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
16740
16828
|
</ng-template>
|
|
16741
16829
|
`,
|
|
16742
16830
|
standalone: true,
|
|
16743
|
-
imports: [TimelineMultiDayViewComponent, ViewFooterComponent, WorkHoursFooterDirective]
|
|
16831
|
+
imports: [TimelineMultiDayViewComponent, ViewFooterComponent, WorkHoursFooterDirective, NgIf]
|
|
16744
16832
|
}]
|
|
16745
16833
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: ViewContextService }, { type: ViewStateService }]; }, propDecorators: { selectedDateFormat: [{
|
|
16746
16834
|
type: Input
|
|
@@ -16842,9 +16930,9 @@ TimelineWeekViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.
|
|
|
16842
16930
|
[selectedDateFormat]="selectedDateFormat"
|
|
16843
16931
|
[selectedShortDateFormat]="selectedShortDateFormat">
|
|
16844
16932
|
</timeline-multi-day-view>
|
|
16845
|
-
<div viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
16933
|
+
<div *ngIf="viewShowFooter" viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
16846
16934
|
</ng-template>
|
|
16847
|
-
`, isInline: true, dependencies: [{ kind: "component", type: TimelineMultiDayViewComponent, selector: "timeline-multi-day-view", inputs: ["name", "columnWidth", "viewName"] }, { kind: "component", type: ViewFooterComponent, selector: "[viewFooter]", inputs: ["items"], outputs: ["itemClick"] }, { kind: "directive", type: WorkHoursFooterDirective, selector: "[kendoWorkHoursFooter]", inputs: ["showWorkHours"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
16935
|
+
`, isInline: true, dependencies: [{ kind: "component", type: TimelineMultiDayViewComponent, selector: "timeline-multi-day-view", inputs: ["name", "columnWidth", "viewName"] }, { kind: "component", type: ViewFooterComponent, selector: "[viewFooter]", inputs: ["items"], outputs: ["itemClick"] }, { kind: "directive", type: WorkHoursFooterDirective, selector: "[kendoWorkHoursFooter]", inputs: ["showWorkHours"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
16848
16936
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimelineWeekViewComponent, decorators: [{
|
|
16849
16937
|
type: Component,
|
|
16850
16938
|
args: [{
|
|
@@ -16888,11 +16976,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
16888
16976
|
[selectedDateFormat]="selectedDateFormat"
|
|
16889
16977
|
[selectedShortDateFormat]="selectedShortDateFormat">
|
|
16890
16978
|
</timeline-multi-day-view>
|
|
16891
|
-
<div viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
16979
|
+
<div *ngIf="viewShowFooter" viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
|
|
16892
16980
|
</ng-template>
|
|
16893
16981
|
`,
|
|
16894
16982
|
standalone: true,
|
|
16895
|
-
imports: [TimelineMultiDayViewComponent, ViewFooterComponent, WorkHoursFooterDirective]
|
|
16983
|
+
imports: [TimelineMultiDayViewComponent, ViewFooterComponent, WorkHoursFooterDirective, NgIf]
|
|
16896
16984
|
}]
|
|
16897
16985
|
}], ctorParameters: function () { return [{ type: i1$2.IntlService }, { type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: ViewContextService }, { type: ViewStateService }]; }, propDecorators: { selectedDateFormat: [{
|
|
16898
16986
|
type: Input
|