@progress/kendo-angular-scheduler 11.0.0-develop.100 → 11.0.0-develop.102
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/editing/edit-dialog.component.mjs +1 -1
- package/esm2020/package-metadata.mjs +1 -1
- package/esm2020/toolbar/navigation.component.mjs +4 -4
- package/esm2020/views/agenda/agenda-task-item.component.mjs +15 -8
- package/esm2020/views/agenda/agenda-view-list.component.mjs +34 -8
- package/esm2020/views/agenda/agenda-view.module.mjs +4 -3
- package/esm2020/views/common/view-footer.component.mjs +6 -4
- package/esm2020/views/common/views-shared.module.mjs +10 -6
- package/esm2020/views/common/work-hours-footer.directive.mjs +2 -1
- package/esm2020/views/day-time/day-time-view-item.component.mjs +65 -16
- package/esm2020/views/day-time/day-time.module.mjs +4 -3
- package/esm2020/views/month/month-slot.component.mjs +129 -0
- package/esm2020/views/month/month-view-item.component.mjs +59 -12
- package/esm2020/views/month/month-view-renderer.component.mjs +15 -26
- package/esm2020/views/month/month-view.module.mjs +10 -6
- package/fesm2015/progress-kendo-angular-scheduler.mjs +385 -222
- package/fesm2020/progress-kendo-angular-scheduler.mjs +354 -191
- package/package.json +12 -12
- package/views/agenda/agenda-task-item.component.d.ts +4 -0
- package/views/agenda/agenda-view-list.component.d.ts +3 -0
- package/views/agenda/agenda-view.module.d.ts +2 -1
- package/views/common/views-shared.module.d.ts +2 -1
- package/views/day-time/day-time-view-item.component.d.ts +8 -0
- package/views/day-time/day-time.module.d.ts +2 -1
- package/views/month/{month-slot.directive.d.ts → month-slot.component.d.ts} +13 -6
- package/views/month/month-view-item.component.d.ts +6 -0
- package/views/month/month-view-renderer.component.d.ts +0 -1
- package/views/month/month-view.module.d.ts +3 -2
- package/esm2020/views/month/month-slot.directive.mjs +0 -79
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-scheduler",
|
|
3
|
-
"version": "11.0.0-develop.
|
|
3
|
+
"version": "11.0.0-develop.102",
|
|
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",
|
|
@@ -29,17 +29,17 @@
|
|
|
29
29
|
"@progress/kendo-file-saver": "^1.0.7",
|
|
30
30
|
"@progress/kendo-licensing": "^1.0.2",
|
|
31
31
|
"@progress/kendo-recurrence": "^1.0.0",
|
|
32
|
-
"@progress/kendo-angular-buttons": "11.0.0-develop.
|
|
33
|
-
"@progress/kendo-angular-common": "11.0.0-develop.
|
|
34
|
-
"@progress/kendo-angular-dateinputs": "11.0.0-develop.
|
|
35
|
-
"@progress/kendo-angular-dialog": "11.0.0-develop.
|
|
36
|
-
"@progress/kendo-angular-dropdowns": "11.0.0-develop.
|
|
37
|
-
"@progress/kendo-angular-icons": "11.0.0-develop.
|
|
38
|
-
"@progress/kendo-angular-inputs": "11.0.0-develop.
|
|
39
|
-
"@progress/kendo-angular-intl": "11.0.0-develop.
|
|
40
|
-
"@progress/kendo-angular-l10n": "11.0.0-develop.
|
|
41
|
-
"@progress/kendo-angular-popup": "11.0.0-develop.
|
|
42
|
-
"@progress/kendo-angular-schematics": "11.0.0-develop.
|
|
32
|
+
"@progress/kendo-angular-buttons": "11.0.0-develop.102",
|
|
33
|
+
"@progress/kendo-angular-common": "11.0.0-develop.102",
|
|
34
|
+
"@progress/kendo-angular-dateinputs": "11.0.0-develop.102",
|
|
35
|
+
"@progress/kendo-angular-dialog": "11.0.0-develop.102",
|
|
36
|
+
"@progress/kendo-angular-dropdowns": "11.0.0-develop.102",
|
|
37
|
+
"@progress/kendo-angular-icons": "11.0.0-develop.102",
|
|
38
|
+
"@progress/kendo-angular-inputs": "11.0.0-develop.102",
|
|
39
|
+
"@progress/kendo-angular-intl": "11.0.0-develop.102",
|
|
40
|
+
"@progress/kendo-angular-l10n": "11.0.0-develop.102",
|
|
41
|
+
"@progress/kendo-angular-popup": "11.0.0-develop.102",
|
|
42
|
+
"@progress/kendo-angular-schematics": "11.0.0-develop.102",
|
|
43
43
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
|
6
6
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
/**
|
|
9
10
|
* @hidden
|
|
@@ -11,6 +12,9 @@ import * as i0 from "@angular/core";
|
|
|
11
12
|
export declare class AgendaTaskItemComponent {
|
|
12
13
|
private localization;
|
|
13
14
|
protected localeId: string;
|
|
15
|
+
arrowRotateCWIcon: SVGIcon;
|
|
16
|
+
arrowsNoRepeatIcon: SVGIcon;
|
|
17
|
+
xIcon: SVGIcon;
|
|
14
18
|
item: any;
|
|
15
19
|
color: string;
|
|
16
20
|
eventTemplate: TemplateRef<any>;
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
|
6
6
|
import { IntlService } from '@progress/kendo-angular-intl';
|
|
7
7
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
8
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
10
|
/**
|
|
10
11
|
* @hidden
|
|
@@ -12,6 +13,8 @@ import * as i0 from "@angular/core";
|
|
|
12
13
|
export declare class AgendaListComponent {
|
|
13
14
|
private intlService;
|
|
14
15
|
private localization;
|
|
16
|
+
caretAltLeftIcon: SVGIcon;
|
|
17
|
+
caretAltRightIcon: SVGIcon;
|
|
15
18
|
classes: boolean;
|
|
16
19
|
tasks: any[];
|
|
17
20
|
eventTemplate: TemplateRef<any>;
|
|
@@ -12,11 +12,12 @@ import * as i6 from "./agenda-view-internal.component";
|
|
|
12
12
|
import * as i7 from "@angular/common";
|
|
13
13
|
import * as i8 from "@progress/kendo-angular-intl";
|
|
14
14
|
import * as i9 from "../../shared.module";
|
|
15
|
+
import * as i10 from "@progress/kendo-angular-icons";
|
|
15
16
|
/**
|
|
16
17
|
* @hidden
|
|
17
18
|
*/
|
|
18
19
|
export declare class AgendaViewModule {
|
|
19
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<AgendaViewModule, never>;
|
|
20
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AgendaViewModule, [typeof i1.AgendaHeaderComponent, typeof i2.AgendaHeaderItemComponent, typeof i3.AgendaListComponent, typeof i4.AgendaTaskItemComponent, typeof i5.AgendaViewComponent, typeof i6.AgendaViewInternalComponent], [typeof i7.CommonModule, typeof i8.IntlModule, typeof i9.SharedModule], [typeof i5.AgendaViewComponent]>;
|
|
21
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AgendaViewModule, [typeof i1.AgendaHeaderComponent, typeof i2.AgendaHeaderItemComponent, typeof i3.AgendaListComponent, typeof i4.AgendaTaskItemComponent, typeof i5.AgendaViewComponent, typeof i6.AgendaViewInternalComponent], [typeof i7.CommonModule, typeof i8.IntlModule, typeof i9.SharedModule, typeof i10.IconsModule], [typeof i5.AgendaViewComponent]>;
|
|
21
22
|
static ɵinj: i0.ɵɵInjectorDeclaration<AgendaViewModule>;
|
|
22
23
|
}
|
|
@@ -13,11 +13,12 @@ import * as i7 from "@angular/common";
|
|
|
13
13
|
import * as i8 from "@progress/kendo-angular-intl";
|
|
14
14
|
import * as i9 from "../../shared.module";
|
|
15
15
|
import * as i10 from "@progress/kendo-angular-buttons";
|
|
16
|
+
import * as i11 from "@progress/kendo-angular-icons";
|
|
16
17
|
/**
|
|
17
18
|
* @hidden
|
|
18
19
|
*/
|
|
19
20
|
export declare class ViewsSharedModule {
|
|
20
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<ViewsSharedModule, never>;
|
|
21
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ViewsSharedModule, [typeof i1.ViewFooterComponent, typeof i2.WorkHoursFooterDirective, typeof i3.RepeatPipe, typeof i4.ResourceIteratorPipe, typeof i5.HintContainerComponent, typeof i6.ResizeHintComponent], [typeof i7.CommonModule, typeof i8.IntlModule, typeof i9.SharedModule, typeof i10.ButtonsModule], [typeof i1.ViewFooterComponent, typeof i2.WorkHoursFooterDirective, typeof i3.RepeatPipe, typeof i4.ResourceIteratorPipe, typeof i5.HintContainerComponent, typeof i6.ResizeHintComponent, typeof i8.IntlModule, typeof i7.CommonModule, typeof i9.SharedModule]>;
|
|
22
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ViewsSharedModule, [typeof i1.ViewFooterComponent, typeof i2.WorkHoursFooterDirective, typeof i3.RepeatPipe, typeof i4.ResourceIteratorPipe, typeof i5.HintContainerComponent, typeof i6.ResizeHintComponent], [typeof i7.CommonModule, typeof i8.IntlModule, typeof i9.SharedModule, typeof i10.ButtonsModule, typeof i11.IconsModule], [typeof i1.ViewFooterComponent, typeof i2.WorkHoursFooterDirective, typeof i3.RepeatPipe, typeof i4.ResourceIteratorPipe, typeof i5.HintContainerComponent, typeof i6.ResizeHintComponent, typeof i8.IntlModule, typeof i7.CommonModule, typeof i9.SharedModule, typeof i11.IconsModule]>;
|
|
22
23
|
static ɵinj: i0.ɵɵInjectorDeclaration<ViewsSharedModule>;
|
|
23
24
|
}
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
import { ElementRef, Renderer2 } from '@angular/core';
|
|
6
6
|
import { IntlService } from '@progress/kendo-angular-intl';
|
|
7
7
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
8
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
8
9
|
import { FocusService } from '../../navigation';
|
|
9
10
|
import { DayTimeSlotService } from '../day-time/day-time-slot.service';
|
|
10
11
|
import { BaseViewItem } from '../view-items/base-view-item';
|
|
@@ -15,6 +16,13 @@ import * as i0 from "@angular/core";
|
|
|
15
16
|
export declare class DayTimeViewItemComponent extends BaseViewItem {
|
|
16
17
|
private intlService;
|
|
17
18
|
protected localeId: string;
|
|
19
|
+
caretAltLeftIcon: SVGIcon;
|
|
20
|
+
caretAltRightIcon: SVGIcon;
|
|
21
|
+
caretAltUpIcon: SVGIcon;
|
|
22
|
+
caretAltDownIcon: SVGIcon;
|
|
23
|
+
arrowRotateCwIcon: SVGIcon;
|
|
24
|
+
arrowsNoRepeatIcon: SVGIcon;
|
|
25
|
+
xIcon: SVGIcon;
|
|
18
26
|
vertical: boolean;
|
|
19
27
|
isAllDay: boolean;
|
|
20
28
|
get eventTime(): string;
|
|
@@ -8,11 +8,12 @@ import * as i2 from "./day-time-view-item.component";
|
|
|
8
8
|
import * as i3 from "@angular/common";
|
|
9
9
|
import * as i4 from "../../shared.module";
|
|
10
10
|
import * as i5 from "../common/views-shared.module";
|
|
11
|
+
import * as i6 from "@progress/kendo-angular-icons";
|
|
11
12
|
/**
|
|
12
13
|
* @hidden
|
|
13
14
|
*/
|
|
14
15
|
export declare class DayTimeModule {
|
|
15
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<DayTimeModule, never>;
|
|
16
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DayTimeModule, [typeof i1.TimeSlotDirective, typeof i1.DaySlotDirective, typeof i2.DayTimeViewItemComponent], [typeof i3.CommonModule, typeof i4.SharedModule, typeof i5.ViewsSharedModule], [typeof i1.TimeSlotDirective, typeof i1.DaySlotDirective, typeof i2.DayTimeViewItemComponent]>;
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DayTimeModule, [typeof i1.TimeSlotDirective, typeof i1.DaySlotDirective, typeof i2.DayTimeViewItemComponent], [typeof i3.CommonModule, typeof i4.SharedModule, typeof i5.ViewsSharedModule, typeof i6.IconsModule], [typeof i1.TimeSlotDirective, typeof i1.DaySlotDirective, typeof i2.DayTimeViewItemComponent]>;
|
|
17
18
|
static ɵinj: i0.ɵɵInjectorDeclaration<DayTimeModule>;
|
|
18
19
|
}
|
|
@@ -2,29 +2,36 @@
|
|
|
2
2
|
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { ElementRef } from '@angular/core';
|
|
5
|
+
import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
6
6
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
7
|
import { BaseSlotDirective } from '../view-items/base-slot.directive';
|
|
8
8
|
import { MonthSlotService } from './month-slot.service';
|
|
9
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
/**
|
|
11
12
|
* @hidden
|
|
12
13
|
*/
|
|
13
|
-
export declare class
|
|
14
|
+
export declare class MonthSlotComponent extends BaseSlotDirective {
|
|
15
|
+
private cdr;
|
|
16
|
+
style: string;
|
|
17
|
+
showMoreButton: boolean;
|
|
18
|
+
moreHorizontalIcon: SVGIcon;
|
|
19
|
+
resourcesByIndex: any;
|
|
20
|
+
monthDaySlotTemplateRef: any;
|
|
14
21
|
set start(value: Date);
|
|
15
22
|
get start(): Date;
|
|
16
23
|
isDaySlot: boolean;
|
|
17
24
|
get end(): Date;
|
|
25
|
+
isFirstDayOfMonth(day: Date): boolean;
|
|
18
26
|
get linkHeight(): number;
|
|
19
27
|
private startDate;
|
|
20
28
|
private _linkHeight;
|
|
21
|
-
|
|
22
|
-
constructor(element: ElementRef, slotService: MonthSlotService, localization: LocalizationService);
|
|
29
|
+
constructor(element: ElementRef, slotService: MonthSlotService, localization: LocalizationService, cdr: ChangeDetectorRef);
|
|
23
30
|
ngOnDestroy(): void;
|
|
24
31
|
showMore(rect: any): void;
|
|
25
32
|
hideMore(): void;
|
|
26
33
|
invalidate(): void;
|
|
27
34
|
private removeShowMore;
|
|
28
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
29
|
-
static
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonthSlotComponent, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonthSlotComponent, "[monthSlot]", never, { "resourcesByIndex": "resourcesByIndex"; "monthDaySlotTemplateRef": "monthDaySlotTemplateRef"; "start": "monthSlot"; }, {}, never, never>;
|
|
30
37
|
}
|
|
@@ -7,12 +7,18 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
7
7
|
import { MonthSlotService } from './month-slot.service';
|
|
8
8
|
import { BaseViewItem } from '../view-items/base-view-item';
|
|
9
9
|
import { FocusService } from '../../navigation';
|
|
10
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
/**
|
|
12
13
|
* @hidden
|
|
13
14
|
*/
|
|
14
15
|
export declare class MonthViewItemComponent extends BaseViewItem {
|
|
15
16
|
protected localeId: string;
|
|
17
|
+
caretAltLeftIcon: SVGIcon;
|
|
18
|
+
caretAltRightIcon: SVGIcon;
|
|
19
|
+
arrowRotateCwIcon: SVGIcon;
|
|
20
|
+
arrowsNoRepeatIcon: SVGIcon;
|
|
21
|
+
xIcon: SVGIcon;
|
|
16
22
|
constructor(slotService: MonthSlotService, localization: LocalizationService, focusService: FocusService, element: ElementRef, renderer: Renderer2, localeId: string);
|
|
17
23
|
reflow(): void;
|
|
18
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<MonthViewItemComponent, never>;
|
|
@@ -50,7 +50,6 @@ export declare class MonthViewRendererComponent extends BaseView implements OnCh
|
|
|
50
50
|
daySlotClass(day: any, resourceIndex: any): string;
|
|
51
51
|
cellTitle(value: Date): string;
|
|
52
52
|
addDay(dayStart: Date): Date;
|
|
53
|
-
isFirstDayOfMonth(day: Date): boolean;
|
|
54
53
|
protected optionsChange(changes: any): void;
|
|
55
54
|
protected createTasks(items: ViewItem[], dateRange: DateRange): any[];
|
|
56
55
|
protected onTasksChange(): void;
|
|
@@ -6,14 +6,15 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
import * as i1 from "./month-view.component";
|
|
7
7
|
import * as i2 from "./month-view-renderer.component";
|
|
8
8
|
import * as i3 from "./month-view-item.component";
|
|
9
|
-
import * as i4 from "./month-slot.
|
|
9
|
+
import * as i4 from "./month-slot.component";
|
|
10
10
|
import * as i5 from "./multi-week-view.component";
|
|
11
11
|
import * as i6 from "../common/views-shared.module";
|
|
12
|
+
import * as i7 from "@progress/kendo-angular-icons";
|
|
12
13
|
/**
|
|
13
14
|
* @hidden
|
|
14
15
|
*/
|
|
15
16
|
export declare class MonthViewModule {
|
|
16
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<MonthViewModule, never>;
|
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MonthViewModule, [typeof i1.MonthViewComponent, typeof i2.MonthViewRendererComponent, typeof i3.MonthViewItemComponent, typeof i4.
|
|
18
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MonthViewModule, [typeof i1.MonthViewComponent, typeof i2.MonthViewRendererComponent, typeof i3.MonthViewItemComponent, typeof i4.MonthSlotComponent, typeof i5.MultiWeekViewComponent], [typeof i6.ViewsSharedModule, typeof i7.IconsModule], [typeof i1.MonthViewComponent, typeof i5.MultiWeekViewComponent]>;
|
|
18
19
|
static ɵinj: i0.ɵɵInjectorDeclaration<MonthViewModule>;
|
|
19
20
|
}
|
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { Directive, Input, ElementRef } from '@angular/core';
|
|
6
|
-
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
|
-
import { BaseSlotDirective } from '../view-items/base-slot.directive';
|
|
8
|
-
import { MonthSlotService } from './month-slot.service';
|
|
9
|
-
import { firstElementChild } from '../../common/dom-queries';
|
|
10
|
-
import { addUTCDays, toUTCDate } from '../utils';
|
|
11
|
-
import * as i0 from "@angular/core";
|
|
12
|
-
import * as i1 from "./month-slot.service";
|
|
13
|
-
import * as i2 from "@progress/kendo-angular-l10n";
|
|
14
|
-
/**
|
|
15
|
-
* @hidden
|
|
16
|
-
*/
|
|
17
|
-
export class MonthSlotDirective extends BaseSlotDirective {
|
|
18
|
-
constructor(element, slotService, localization) {
|
|
19
|
-
super(element, slotService, localization);
|
|
20
|
-
this.isDaySlot = true;
|
|
21
|
-
this._linkHeight = null;
|
|
22
|
-
}
|
|
23
|
-
set start(value) {
|
|
24
|
-
this.startDate = toUTCDate(value);
|
|
25
|
-
}
|
|
26
|
-
get start() {
|
|
27
|
-
return this.startDate;
|
|
28
|
-
}
|
|
29
|
-
get end() {
|
|
30
|
-
return addUTCDays(this.start, 1);
|
|
31
|
-
}
|
|
32
|
-
get linkHeight() {
|
|
33
|
-
if (this._linkHeight === null) {
|
|
34
|
-
const element = firstElementChild(this.nativeElement);
|
|
35
|
-
this._linkHeight = element ? element.offsetHeight + element.offsetTop : 0;
|
|
36
|
-
}
|
|
37
|
-
return this._linkHeight;
|
|
38
|
-
}
|
|
39
|
-
ngOnDestroy() {
|
|
40
|
-
super.ngOnDestroy();
|
|
41
|
-
this.removeShowMore();
|
|
42
|
-
}
|
|
43
|
-
showMore(rect) {
|
|
44
|
-
if (!this.showMoreElement) {
|
|
45
|
-
const element = this.showMoreElement = document.createElement('div');
|
|
46
|
-
element.innerHTML = '<span class="k-icon k-i-more-horizontal"></span>';
|
|
47
|
-
element.className = 'k-more-events k-button';
|
|
48
|
-
element.style.width = `${rect.width}px`;
|
|
49
|
-
element.style.left = `${rect.left}px`;
|
|
50
|
-
element.style.top = `${rect.top}px`;
|
|
51
|
-
this.nativeElement.appendChild(element);
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
hideMore() {
|
|
55
|
-
this.removeShowMore();
|
|
56
|
-
}
|
|
57
|
-
invalidate() {
|
|
58
|
-
super.invalidate();
|
|
59
|
-
this._linkHeight = null;
|
|
60
|
-
this.removeShowMore();
|
|
61
|
-
}
|
|
62
|
-
removeShowMore() {
|
|
63
|
-
if (this.showMoreElement) {
|
|
64
|
-
this.showMoreElement.parentNode.removeChild(this.showMoreElement);
|
|
65
|
-
this.showMoreElement = null;
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
MonthSlotDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonthSlotDirective, deps: [{ token: i0.ElementRef }, { token: i1.MonthSlotService }, { token: i2.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
70
|
-
MonthSlotDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: MonthSlotDirective, selector: "[monthSlot]", inputs: { start: "start" }, usesInheritance: true, ngImport: i0 });
|
|
71
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonthSlotDirective, decorators: [{
|
|
72
|
-
type: Directive,
|
|
73
|
-
args: [{
|
|
74
|
-
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
75
|
-
selector: '[monthSlot]'
|
|
76
|
-
}]
|
|
77
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.MonthSlotService }, { type: i2.LocalizationService }]; }, propDecorators: { start: [{
|
|
78
|
-
type: Input
|
|
79
|
-
}] } });
|