@progress/kendo-angular-scheduler 11.2.0-develop.11 → 11.2.0-develop.13
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/package-metadata.mjs +2 -2
- package/esm2020/views/month/month-slot.component.mjs +23 -10
- package/fesm2015/progress-kendo-angular-scheduler.mjs +25 -12
- package/fesm2020/progress-kendo-angular-scheduler.mjs +25 -12
- package/package.json +12 -12
- package/schematics/ngAdd/index.js +2 -2
- package/views/month/month-slot.component.d.ts +10 -1
|
@@ -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: '11.2.0-develop.
|
|
12
|
+
publishDate: 1675933729,
|
|
13
|
+
version: '11.2.0-develop.13',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -27,6 +27,19 @@ export class MonthSlotComponent extends BaseSlotDirective {
|
|
|
27
27
|
this.isDaySlot = true;
|
|
28
28
|
this._linkHeight = null;
|
|
29
29
|
}
|
|
30
|
+
set day(value) {
|
|
31
|
+
this._day = value;
|
|
32
|
+
this.start = value;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* For the slot template we need the day value without the UTC conversion
|
|
36
|
+
* - timezone does not matter for the day part in this case as the calendar month view is the same for every timezone
|
|
37
|
+
* otherwise the date is incorrect for some timezones (e.g. LA timezone) -
|
|
38
|
+
* For example, it displays Feb. 8, 2023 to be Thursday, wherease it is Wednesday
|
|
39
|
+
*/
|
|
40
|
+
get day() {
|
|
41
|
+
return this._day;
|
|
42
|
+
}
|
|
30
43
|
set start(value) {
|
|
31
44
|
this.startDate = toUTCDate(value);
|
|
32
45
|
}
|
|
@@ -71,15 +84,15 @@ export class MonthSlotComponent extends BaseSlotDirective {
|
|
|
71
84
|
}
|
|
72
85
|
}
|
|
73
86
|
MonthSlotComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonthSlotComponent, deps: [{ token: i0.ElementRef }, { token: i1.MonthSlotService }, { token: i2.LocalizationService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
74
|
-
MonthSlotComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonthSlotComponent, selector: "[monthSlot]", inputs: { resourcesByIndex: "resourcesByIndex", monthDaySlotTemplateRef: "monthDaySlotTemplateRef",
|
|
87
|
+
MonthSlotComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonthSlotComponent, selector: "[monthSlot]", inputs: { resourcesByIndex: "resourcesByIndex", monthDaySlotTemplateRef: "monthDaySlotTemplateRef", day: ["monthSlot", "day"] }, usesInheritance: true, ngImport: i0, template: `
|
|
75
88
|
<span *ngIf="!monthDaySlotTemplateRef" aria-hidden="true" class="k-link k-nav-day">
|
|
76
|
-
{{
|
|
89
|
+
{{ day | kendoDate: isFirstDayOfMonth(day) ? 'MMM dd' : 'dd' }}
|
|
77
90
|
</span>
|
|
78
91
|
<ng-container
|
|
79
92
|
*ngIf="monthDaySlotTemplateRef"
|
|
80
93
|
[ngTemplateOutlet]="monthDaySlotTemplateRef"
|
|
81
|
-
[ngTemplateOutletContext]="{ date:
|
|
82
|
-
|
|
94
|
+
[ngTemplateOutletContext]="{ date: day, resources: resourcesByIndex }"
|
|
95
|
+
>
|
|
83
96
|
</ng-container>
|
|
84
97
|
|
|
85
98
|
<div *ngIf="showMoreButton" class="k-more-events k-button" [style]="style">
|
|
@@ -87,7 +100,7 @@ MonthSlotComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
87
100
|
innerCssClass="k-i-more-horizontal"
|
|
88
101
|
name="more-horizontal"
|
|
89
102
|
[svgIcon]="moreHorizontalIcon"
|
|
90
|
-
|
|
103
|
+
>
|
|
91
104
|
</kendo-icon-wrapper>
|
|
92
105
|
</div>
|
|
93
106
|
`, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], pipes: { "kendoDate": i5.DatePipe } });
|
|
@@ -98,13 +111,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
98
111
|
selector: '[monthSlot]',
|
|
99
112
|
template: `
|
|
100
113
|
<span *ngIf="!monthDaySlotTemplateRef" aria-hidden="true" class="k-link k-nav-day">
|
|
101
|
-
{{
|
|
114
|
+
{{ day | kendoDate: isFirstDayOfMonth(day) ? 'MMM dd' : 'dd' }}
|
|
102
115
|
</span>
|
|
103
116
|
<ng-container
|
|
104
117
|
*ngIf="monthDaySlotTemplateRef"
|
|
105
118
|
[ngTemplateOutlet]="monthDaySlotTemplateRef"
|
|
106
|
-
[ngTemplateOutletContext]="{ date:
|
|
107
|
-
|
|
119
|
+
[ngTemplateOutletContext]="{ date: day, resources: resourcesByIndex }"
|
|
120
|
+
>
|
|
108
121
|
</ng-container>
|
|
109
122
|
|
|
110
123
|
<div *ngIf="showMoreButton" class="k-more-events k-button" [style]="style">
|
|
@@ -112,7 +125,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
112
125
|
innerCssClass="k-i-more-horizontal"
|
|
113
126
|
name="more-horizontal"
|
|
114
127
|
[svgIcon]="moreHorizontalIcon"
|
|
115
|
-
|
|
128
|
+
>
|
|
116
129
|
</kendo-icon-wrapper>
|
|
117
130
|
</div>
|
|
118
131
|
`
|
|
@@ -121,7 +134,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
121
134
|
type: Input
|
|
122
135
|
}], monthDaySlotTemplateRef: [{
|
|
123
136
|
type: Input
|
|
124
|
-
}],
|
|
137
|
+
}], day: [{
|
|
125
138
|
type: Input,
|
|
126
139
|
args: ['monthSlot']
|
|
127
140
|
}] } });
|
|
@@ -46,8 +46,8 @@ const packageMetadata = {
|
|
|
46
46
|
name: '@progress/kendo-angular-scheduler',
|
|
47
47
|
productName: 'Kendo UI for Angular',
|
|
48
48
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
49
|
-
publishDate:
|
|
50
|
-
version: '11.2.0-develop.
|
|
49
|
+
publishDate: 1675933729,
|
|
50
|
+
version: '11.2.0-develop.13',
|
|
51
51
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
52
52
|
};
|
|
53
53
|
|
|
@@ -10838,6 +10838,19 @@ class MonthSlotComponent extends BaseSlotDirective {
|
|
|
10838
10838
|
this.isDaySlot = true;
|
|
10839
10839
|
this._linkHeight = null;
|
|
10840
10840
|
}
|
|
10841
|
+
set day(value) {
|
|
10842
|
+
this._day = value;
|
|
10843
|
+
this.start = value;
|
|
10844
|
+
}
|
|
10845
|
+
/**
|
|
10846
|
+
* For the slot template we need the day value without the UTC conversion
|
|
10847
|
+
* - timezone does not matter for the day part in this case as the calendar month view is the same for every timezone
|
|
10848
|
+
* otherwise the date is incorrect for some timezones (e.g. LA timezone) -
|
|
10849
|
+
* For example, it displays Feb. 8, 2023 to be Thursday, wherease it is Wednesday
|
|
10850
|
+
*/
|
|
10851
|
+
get day() {
|
|
10852
|
+
return this._day;
|
|
10853
|
+
}
|
|
10841
10854
|
set start(value) {
|
|
10842
10855
|
this.startDate = toUTCDate(value);
|
|
10843
10856
|
}
|
|
@@ -10882,15 +10895,15 @@ class MonthSlotComponent extends BaseSlotDirective {
|
|
|
10882
10895
|
}
|
|
10883
10896
|
}
|
|
10884
10897
|
MonthSlotComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonthSlotComponent, deps: [{ token: i0.ElementRef }, { token: MonthSlotService }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
10885
|
-
MonthSlotComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonthSlotComponent, selector: "[monthSlot]", inputs: { resourcesByIndex: "resourcesByIndex", monthDaySlotTemplateRef: "monthDaySlotTemplateRef",
|
|
10898
|
+
MonthSlotComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonthSlotComponent, selector: "[monthSlot]", inputs: { resourcesByIndex: "resourcesByIndex", monthDaySlotTemplateRef: "monthDaySlotTemplateRef", day: ["monthSlot", "day"] }, usesInheritance: true, ngImport: i0, template: `
|
|
10886
10899
|
<span *ngIf="!monthDaySlotTemplateRef" aria-hidden="true" class="k-link k-nav-day">
|
|
10887
|
-
{{
|
|
10900
|
+
{{ day | kendoDate: isFirstDayOfMonth(day) ? 'MMM dd' : 'dd' }}
|
|
10888
10901
|
</span>
|
|
10889
10902
|
<ng-container
|
|
10890
10903
|
*ngIf="monthDaySlotTemplateRef"
|
|
10891
10904
|
[ngTemplateOutlet]="monthDaySlotTemplateRef"
|
|
10892
|
-
[ngTemplateOutletContext]="{ date:
|
|
10893
|
-
|
|
10905
|
+
[ngTemplateOutletContext]="{ date: day, resources: resourcesByIndex }"
|
|
10906
|
+
>
|
|
10894
10907
|
</ng-container>
|
|
10895
10908
|
|
|
10896
10909
|
<div *ngIf="showMoreButton" class="k-more-events k-button" [style]="style">
|
|
@@ -10898,7 +10911,7 @@ MonthSlotComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
10898
10911
|
innerCssClass="k-i-more-horizontal"
|
|
10899
10912
|
name="more-horizontal"
|
|
10900
10913
|
[svgIcon]="moreHorizontalIcon"
|
|
10901
|
-
|
|
10914
|
+
>
|
|
10902
10915
|
</kendo-icon-wrapper>
|
|
10903
10916
|
</div>
|
|
10904
10917
|
`, isInline: true, components: [{ type: i4.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], pipes: { "kendoDate": i1$4.DatePipe } });
|
|
@@ -10909,13 +10922,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
10909
10922
|
selector: '[monthSlot]',
|
|
10910
10923
|
template: `
|
|
10911
10924
|
<span *ngIf="!monthDaySlotTemplateRef" aria-hidden="true" class="k-link k-nav-day">
|
|
10912
|
-
{{
|
|
10925
|
+
{{ day | kendoDate: isFirstDayOfMonth(day) ? 'MMM dd' : 'dd' }}
|
|
10913
10926
|
</span>
|
|
10914
10927
|
<ng-container
|
|
10915
10928
|
*ngIf="monthDaySlotTemplateRef"
|
|
10916
10929
|
[ngTemplateOutlet]="monthDaySlotTemplateRef"
|
|
10917
|
-
[ngTemplateOutletContext]="{ date:
|
|
10918
|
-
|
|
10930
|
+
[ngTemplateOutletContext]="{ date: day, resources: resourcesByIndex }"
|
|
10931
|
+
>
|
|
10919
10932
|
</ng-container>
|
|
10920
10933
|
|
|
10921
10934
|
<div *ngIf="showMoreButton" class="k-more-events k-button" [style]="style">
|
|
@@ -10923,7 +10936,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
10923
10936
|
innerCssClass="k-i-more-horizontal"
|
|
10924
10937
|
name="more-horizontal"
|
|
10925
10938
|
[svgIcon]="moreHorizontalIcon"
|
|
10926
|
-
|
|
10939
|
+
>
|
|
10927
10940
|
</kendo-icon-wrapper>
|
|
10928
10941
|
</div>
|
|
10929
10942
|
`
|
|
@@ -10932,7 +10945,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
10932
10945
|
type: Input
|
|
10933
10946
|
}], monthDaySlotTemplateRef: [{
|
|
10934
10947
|
type: Input
|
|
10935
|
-
}],
|
|
10948
|
+
}], day: [{
|
|
10936
10949
|
type: Input,
|
|
10937
10950
|
args: ['monthSlot']
|
|
10938
10951
|
}] } });
|
|
@@ -46,8 +46,8 @@ const packageMetadata = {
|
|
|
46
46
|
name: '@progress/kendo-angular-scheduler',
|
|
47
47
|
productName: 'Kendo UI for Angular',
|
|
48
48
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
49
|
-
publishDate:
|
|
50
|
-
version: '11.2.0-develop.
|
|
49
|
+
publishDate: 1675933729,
|
|
50
|
+
version: '11.2.0-develop.13',
|
|
51
51
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
52
52
|
};
|
|
53
53
|
|
|
@@ -10833,6 +10833,19 @@ class MonthSlotComponent extends BaseSlotDirective {
|
|
|
10833
10833
|
this.isDaySlot = true;
|
|
10834
10834
|
this._linkHeight = null;
|
|
10835
10835
|
}
|
|
10836
|
+
set day(value) {
|
|
10837
|
+
this._day = value;
|
|
10838
|
+
this.start = value;
|
|
10839
|
+
}
|
|
10840
|
+
/**
|
|
10841
|
+
* For the slot template we need the day value without the UTC conversion
|
|
10842
|
+
* - timezone does not matter for the day part in this case as the calendar month view is the same for every timezone
|
|
10843
|
+
* otherwise the date is incorrect for some timezones (e.g. LA timezone) -
|
|
10844
|
+
* For example, it displays Feb. 8, 2023 to be Thursday, wherease it is Wednesday
|
|
10845
|
+
*/
|
|
10846
|
+
get day() {
|
|
10847
|
+
return this._day;
|
|
10848
|
+
}
|
|
10836
10849
|
set start(value) {
|
|
10837
10850
|
this.startDate = toUTCDate(value);
|
|
10838
10851
|
}
|
|
@@ -10877,15 +10890,15 @@ class MonthSlotComponent extends BaseSlotDirective {
|
|
|
10877
10890
|
}
|
|
10878
10891
|
}
|
|
10879
10892
|
MonthSlotComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonthSlotComponent, deps: [{ token: i0.ElementRef }, { token: MonthSlotService }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
10880
|
-
MonthSlotComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonthSlotComponent, selector: "[monthSlot]", inputs: { resourcesByIndex: "resourcesByIndex", monthDaySlotTemplateRef: "monthDaySlotTemplateRef",
|
|
10893
|
+
MonthSlotComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonthSlotComponent, selector: "[monthSlot]", inputs: { resourcesByIndex: "resourcesByIndex", monthDaySlotTemplateRef: "monthDaySlotTemplateRef", day: ["monthSlot", "day"] }, usesInheritance: true, ngImport: i0, template: `
|
|
10881
10894
|
<span *ngIf="!monthDaySlotTemplateRef" aria-hidden="true" class="k-link k-nav-day">
|
|
10882
|
-
{{
|
|
10895
|
+
{{ day | kendoDate: isFirstDayOfMonth(day) ? 'MMM dd' : 'dd' }}
|
|
10883
10896
|
</span>
|
|
10884
10897
|
<ng-container
|
|
10885
10898
|
*ngIf="monthDaySlotTemplateRef"
|
|
10886
10899
|
[ngTemplateOutlet]="monthDaySlotTemplateRef"
|
|
10887
|
-
[ngTemplateOutletContext]="{ date:
|
|
10888
|
-
|
|
10900
|
+
[ngTemplateOutletContext]="{ date: day, resources: resourcesByIndex }"
|
|
10901
|
+
>
|
|
10889
10902
|
</ng-container>
|
|
10890
10903
|
|
|
10891
10904
|
<div *ngIf="showMoreButton" class="k-more-events k-button" [style]="style">
|
|
@@ -10893,7 +10906,7 @@ MonthSlotComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
10893
10906
|
innerCssClass="k-i-more-horizontal"
|
|
10894
10907
|
name="more-horizontal"
|
|
10895
10908
|
[svgIcon]="moreHorizontalIcon"
|
|
10896
|
-
|
|
10909
|
+
>
|
|
10897
10910
|
</kendo-icon-wrapper>
|
|
10898
10911
|
</div>
|
|
10899
10912
|
`, isInline: true, components: [{ type: i4.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], pipes: { "kendoDate": i1$4.DatePipe } });
|
|
@@ -10904,13 +10917,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
10904
10917
|
selector: '[monthSlot]',
|
|
10905
10918
|
template: `
|
|
10906
10919
|
<span *ngIf="!monthDaySlotTemplateRef" aria-hidden="true" class="k-link k-nav-day">
|
|
10907
|
-
{{
|
|
10920
|
+
{{ day | kendoDate: isFirstDayOfMonth(day) ? 'MMM dd' : 'dd' }}
|
|
10908
10921
|
</span>
|
|
10909
10922
|
<ng-container
|
|
10910
10923
|
*ngIf="monthDaySlotTemplateRef"
|
|
10911
10924
|
[ngTemplateOutlet]="monthDaySlotTemplateRef"
|
|
10912
|
-
[ngTemplateOutletContext]="{ date:
|
|
10913
|
-
|
|
10925
|
+
[ngTemplateOutletContext]="{ date: day, resources: resourcesByIndex }"
|
|
10926
|
+
>
|
|
10914
10927
|
</ng-container>
|
|
10915
10928
|
|
|
10916
10929
|
<div *ngIf="showMoreButton" class="k-more-events k-button" [style]="style">
|
|
@@ -10918,7 +10931,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
10918
10931
|
innerCssClass="k-i-more-horizontal"
|
|
10919
10932
|
name="more-horizontal"
|
|
10920
10933
|
[svgIcon]="moreHorizontalIcon"
|
|
10921
|
-
|
|
10934
|
+
>
|
|
10922
10935
|
</kendo-icon-wrapper>
|
|
10923
10936
|
</div>
|
|
10924
10937
|
`
|
|
@@ -10927,7 +10940,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
10927
10940
|
type: Input
|
|
10928
10941
|
}], monthDaySlotTemplateRef: [{
|
|
10929
10942
|
type: Input
|
|
10930
|
-
}],
|
|
10943
|
+
}], day: [{
|
|
10931
10944
|
type: Input,
|
|
10932
10945
|
args: ['monthSlot']
|
|
10933
10946
|
}] } });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-scheduler",
|
|
3
|
-
"version": "11.2.0-develop.
|
|
3
|
+
"version": "11.2.0-develop.13",
|
|
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",
|
|
@@ -25,21 +25,21 @@
|
|
|
25
25
|
"@progress/kendo-data-query": "^1.0.0",
|
|
26
26
|
"@progress/kendo-drawing": "^1.17.2",
|
|
27
27
|
"@progress/kendo-licensing": "^1.0.2",
|
|
28
|
-
"@progress/kendo-angular-buttons": "11.2.0-develop.
|
|
29
|
-
"@progress/kendo-angular-common": "11.2.0-develop.
|
|
30
|
-
"@progress/kendo-angular-dateinputs": "11.2.0-develop.
|
|
31
|
-
"@progress/kendo-angular-dialog": "11.2.0-develop.
|
|
32
|
-
"@progress/kendo-angular-dropdowns": "11.2.0-develop.
|
|
33
|
-
"@progress/kendo-angular-icons": "11.2.0-develop.
|
|
34
|
-
"@progress/kendo-angular-inputs": "11.2.0-develop.
|
|
35
|
-
"@progress/kendo-angular-intl": "11.2.0-develop.
|
|
36
|
-
"@progress/kendo-angular-l10n": "11.2.0-develop.
|
|
37
|
-
"@progress/kendo-angular-popup": "11.2.0-develop.
|
|
28
|
+
"@progress/kendo-angular-buttons": "11.2.0-develop.13",
|
|
29
|
+
"@progress/kendo-angular-common": "11.2.0-develop.13",
|
|
30
|
+
"@progress/kendo-angular-dateinputs": "11.2.0-develop.13",
|
|
31
|
+
"@progress/kendo-angular-dialog": "11.2.0-develop.13",
|
|
32
|
+
"@progress/kendo-angular-dropdowns": "11.2.0-develop.13",
|
|
33
|
+
"@progress/kendo-angular-icons": "11.2.0-develop.13",
|
|
34
|
+
"@progress/kendo-angular-inputs": "11.2.0-develop.13",
|
|
35
|
+
"@progress/kendo-angular-intl": "11.2.0-develop.13",
|
|
36
|
+
"@progress/kendo-angular-l10n": "11.2.0-develop.13",
|
|
37
|
+
"@progress/kendo-angular-popup": "11.2.0-develop.13",
|
|
38
38
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"tslib": "^2.3.1",
|
|
42
|
-
"@progress/kendo-angular-schematics": "11.2.0-develop.
|
|
42
|
+
"@progress/kendo-angular-schematics": "11.2.0-develop.13",
|
|
43
43
|
"@progress/kendo-date-math": "^1.3.2",
|
|
44
44
|
"@progress/kendo-draggable": "^3.0.2",
|
|
45
45
|
"@progress/kendo-file-saver": "^1.0.7",
|
|
@@ -4,9 +4,9 @@ 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 dep of the dropdowns
|
|
7
|
-
'@progress/kendo-angular-treeview': '11.2.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '11.2.0-develop.13',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '11.2.0-develop.
|
|
9
|
+
'@progress/kendo-angular-dialog': '11.2.0-develop.13',
|
|
10
10
|
// peer dependency of kendo-angular-icons
|
|
11
11
|
'@progress/kendo-svg-icons': '^1.0.0'
|
|
12
12
|
} });
|
|
@@ -18,6 +18,14 @@ export declare class MonthSlotComponent extends BaseSlotDirective {
|
|
|
18
18
|
moreHorizontalIcon: SVGIcon;
|
|
19
19
|
resourcesByIndex: any;
|
|
20
20
|
monthDaySlotTemplateRef: any;
|
|
21
|
+
set day(value: Date);
|
|
22
|
+
/**
|
|
23
|
+
* For the slot template we need the day value without the UTC conversion
|
|
24
|
+
* - timezone does not matter for the day part in this case as the calendar month view is the same for every timezone
|
|
25
|
+
* otherwise the date is incorrect for some timezones (e.g. LA timezone) -
|
|
26
|
+
* For example, it displays Feb. 8, 2023 to be Thursday, wherease it is Wednesday
|
|
27
|
+
*/
|
|
28
|
+
get day(): Date;
|
|
21
29
|
set start(value: Date);
|
|
22
30
|
get start(): Date;
|
|
23
31
|
isDaySlot: boolean;
|
|
@@ -25,6 +33,7 @@ export declare class MonthSlotComponent extends BaseSlotDirective {
|
|
|
25
33
|
isFirstDayOfMonth(day: Date): boolean;
|
|
26
34
|
get linkHeight(): number;
|
|
27
35
|
private startDate;
|
|
36
|
+
private _day;
|
|
28
37
|
private _linkHeight;
|
|
29
38
|
constructor(element: ElementRef, slotService: MonthSlotService, localization: LocalizationService, cdr: ChangeDetectorRef);
|
|
30
39
|
ngOnDestroy(): void;
|
|
@@ -33,5 +42,5 @@ export declare class MonthSlotComponent extends BaseSlotDirective {
|
|
|
33
42
|
invalidate(): void;
|
|
34
43
|
private removeShowMore;
|
|
35
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<MonthSlotComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MonthSlotComponent, "[monthSlot]", never, { "resourcesByIndex": "resourcesByIndex"; "monthDaySlotTemplateRef": "monthDaySlotTemplateRef"; "
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonthSlotComponent, "[monthSlot]", never, { "resourcesByIndex": "resourcesByIndex"; "monthDaySlotTemplateRef": "monthDaySlotTemplateRef"; "day": "monthSlot"; }, {}, never, never>;
|
|
37
46
|
}
|