@progress/kendo-angular-scheduler 13.0.0-develop.5 → 13.0.0-develop.6
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/pdf/pdf-command.directive.mjs +1 -1
- package/esm2020/toolbar/navigation.component.mjs +14 -8
- package/esm2020/views/agenda/agenda-task-item.component.mjs +1 -1
- package/esm2020/views/agenda/agenda-view-list.component.mjs +16 -10
- package/esm2020/views/day-time/day-time-view-item.component.mjs +9 -9
- package/esm2020/views/month/month-slot.component.mjs +1 -1
- package/esm2020/views/month/month-view-item.component.mjs +9 -9
- package/esm2020/views/view-items/base-view-item.mjs +9 -0
- package/fesm2015/progress-kendo-angular-scheduler.mjs +61 -41
- package/fesm2020/progress-kendo-angular-scheduler.mjs +61 -41
- package/package.json +12 -12
- package/schematics/ngAdd/index.js +2 -2
- package/toolbar/navigation.component.d.ts +2 -0
- package/views/agenda/agenda-view-list.component.d.ts +4 -2
- package/views/view-items/base-view-item.d.ts +5 -0
|
@@ -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: '13.0.0-develop.
|
|
12
|
+
publishDate: 1685095215,
|
|
13
|
+
version: '13.0.0-develop.6',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -61,7 +61,7 @@ PDFCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
61
61
|
</span>
|
|
62
62
|
<span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
|
|
63
63
|
<span class="k-button-text"><ng-content></ng-content></span>
|
|
64
|
-
`, 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.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
64
|
+
`, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
65
65
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDFCommandDirective, decorators: [{
|
|
66
66
|
type: Component,
|
|
67
67
|
args: [{
|
|
@@ -183,6 +183,12 @@ export class ToolbarNavigationComponent {
|
|
|
183
183
|
this.dateRangeText.current = isDesktop ? this.dateRangeText.long : this.dateRangeText.short;
|
|
184
184
|
this.cd.detectChanges();
|
|
185
185
|
}
|
|
186
|
+
get arrowIcons() {
|
|
187
|
+
return !this.localization.rtl ? ['caret-alt-left', 'caret-alt-right'] : ['caret-alt-right', 'caret-alt-left'];
|
|
188
|
+
}
|
|
189
|
+
get arrowSVGIcons() {
|
|
190
|
+
return !this.localization.rtl ? ['caretAltLeftIcon', 'caretAltRightIcon'] : ['caretAltRightIcon', 'caretAltLeftIcon'];
|
|
191
|
+
}
|
|
186
192
|
}
|
|
187
193
|
ToolbarNavigationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ToolbarNavigationComponent, deps: [{ token: i1.PopupService }, { token: i2.ToolbarService }, { token: i3.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i4.ViewContextService }], target: i0.ɵɵFactoryTarget.Component });
|
|
188
194
|
ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ToolbarNavigationComponent, selector: "[kendoSchedulerToolbarNavigation]", inputs: { min: "min", max: "max" }, host: { properties: { "class.k-toolbar-group": "this.hostClass" } }, providers: [
|
|
@@ -200,8 +206,8 @@ ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
200
206
|
<button kendoButton
|
|
201
207
|
(click)="prevClick()"
|
|
202
208
|
class="k-nav-prev"
|
|
203
|
-
icon="
|
|
204
|
-
[svgIcon]="svgIcon(
|
|
209
|
+
[icon]="arrowIcons[0]"
|
|
210
|
+
[svgIcon]="svgIcon(arrowSVGIcons[0])"
|
|
205
211
|
[attr.title]="previousText"
|
|
206
212
|
[attr.aria-label]="previousText"
|
|
207
213
|
[kendoSchedulerFocusIndex]="0"
|
|
@@ -211,8 +217,8 @@ ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
211
217
|
(click)="nextClick()"
|
|
212
218
|
type="button"
|
|
213
219
|
class="k-nav-next"
|
|
214
|
-
icon="
|
|
215
|
-
[svgIcon]="svgIcon(
|
|
220
|
+
[icon]="arrowIcons[1]"
|
|
221
|
+
[svgIcon]="svgIcon(arrowSVGIcons[1])"
|
|
216
222
|
[attr.title]="nextText"
|
|
217
223
|
[attr.aria-label]="nextText"
|
|
218
224
|
[kendoSchedulerFocusIndex]="0"
|
|
@@ -272,8 +278,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
272
278
|
<button kendoButton
|
|
273
279
|
(click)="prevClick()"
|
|
274
280
|
class="k-nav-prev"
|
|
275
|
-
icon="
|
|
276
|
-
[svgIcon]="svgIcon(
|
|
281
|
+
[icon]="arrowIcons[0]"
|
|
282
|
+
[svgIcon]="svgIcon(arrowSVGIcons[0])"
|
|
277
283
|
[attr.title]="previousText"
|
|
278
284
|
[attr.aria-label]="previousText"
|
|
279
285
|
[kendoSchedulerFocusIndex]="0"
|
|
@@ -283,8 +289,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
283
289
|
(click)="nextClick()"
|
|
284
290
|
type="button"
|
|
285
291
|
class="k-nav-next"
|
|
286
|
-
icon="
|
|
287
|
-
[svgIcon]="svgIcon(
|
|
292
|
+
[icon]="arrowIcons[1]"
|
|
293
|
+
[svgIcon]="svgIcon(arrowSVGIcons[1])"
|
|
288
294
|
[attr.title]="nextText"
|
|
289
295
|
[attr.aria-label]="nextText"
|
|
290
296
|
[kendoSchedulerFocusIndex]="0"
|
|
@@ -62,7 +62,7 @@ AgendaTaskItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
62
62
|
<kendo-icon-wrapper name="x" [svgIcon]="xIcon"></kendo-icon-wrapper>
|
|
63
63
|
</span>
|
|
64
64
|
</div>
|
|
65
|
-
`, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
65
|
+
`, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
66
66
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AgendaTaskItemComponent, decorators: [{
|
|
67
67
|
type: Component,
|
|
68
68
|
args: [{
|
|
@@ -23,9 +23,9 @@ export class AgendaListComponent {
|
|
|
23
23
|
constructor(intlService, localization) {
|
|
24
24
|
this.intlService = intlService;
|
|
25
25
|
this.localization = localization;
|
|
26
|
+
this.classes = true;
|
|
26
27
|
this.caretAltLeftIcon = caretAltLeftIcon;
|
|
27
28
|
this.caretAltRightIcon = caretAltRightIcon;
|
|
28
|
-
this.classes = true;
|
|
29
29
|
}
|
|
30
30
|
extractDataItem(item) {
|
|
31
31
|
return item.type === "group" ? item.dataItem.items[0] : item.dataItem;
|
|
@@ -74,6 +74,12 @@ export class AgendaListComponent {
|
|
|
74
74
|
});
|
|
75
75
|
}
|
|
76
76
|
}
|
|
77
|
+
get arrowIcons() {
|
|
78
|
+
return !this.localization.rtl ? ['caret-alt-left', 'caret-alt-right'] : ['caret-alt-right', 'caret-alt-left'];
|
|
79
|
+
}
|
|
80
|
+
get arrowSVGIcons() {
|
|
81
|
+
return !this.localization.rtl ? [this.caretAltLeftIcon, this.caretAltRightIcon] : [this.caretAltRightIcon, this.caretAltLeftIcon];
|
|
82
|
+
}
|
|
77
83
|
}
|
|
78
84
|
AgendaListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AgendaListComponent, deps: [{ token: i1.IntlService }, { token: i2.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
79
85
|
AgendaListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AgendaListComponent, selector: "[kendoSchedulerAgendaList]", inputs: { tasks: "tasks", eventTemplate: "eventTemplate", slotClass: "slotClass", eventClass: "eventClass", eventStyles: "eventStyles", agendaTimeTemplate: "agendaTimeTemplate", agendaDateTemplate: "agendaDateTemplate", editable: "editable" }, host: { properties: { "class.k-scheduler-content": "this.classes" } }, ngImport: i0, template: `
|
|
@@ -94,16 +100,16 @@ AgendaListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
94
100
|
<div *ngIf="!agendaTimeTemplate">
|
|
95
101
|
<kendo-icon-wrapper
|
|
96
102
|
*ngIf="extractDataItem(item).tail"
|
|
97
|
-
name="
|
|
98
|
-
[svgIcon]="
|
|
103
|
+
[name]="arrowIcons[0]"
|
|
104
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
99
105
|
>
|
|
100
106
|
</kendo-icon-wrapper>
|
|
101
107
|
|
|
102
108
|
{{ formatTime(extractDataItem(item)) }}
|
|
103
109
|
<kendo-icon-wrapper
|
|
104
110
|
*ngIf="extractDataItem(item).head"
|
|
105
|
-
name="
|
|
106
|
-
[svgIcon]="
|
|
111
|
+
[name]="arrowIcons[1]"
|
|
112
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
107
113
|
>
|
|
108
114
|
</kendo-icon-wrapper>
|
|
109
115
|
</div>
|
|
@@ -123,7 +129,7 @@ AgendaListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
123
129
|
</ng-container>
|
|
124
130
|
</tbody>
|
|
125
131
|
</table>
|
|
126
|
-
`, isInline: true, components: [{ type: i3.AgendaHeaderItemComponent, selector: "[kendoSchedulerAgendaHeaderItem]", inputs: ["kendoSchedulerAgendaHeaderItem", "agendaDateTemplate"] }, { type: i4.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: i5.AgendaTaskItemComponent, selector: "[kendoSchedulerAgendaTaskItem]", inputs: ["kendoSchedulerAgendaTaskItem", "color", "eventTemplate", "editable"] }], directives: [{ type: i6.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i6.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i6.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i6.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i7.FocusableDirective, selector: "[kendoSchedulerFocusIndex]", inputs: ["kendoSchedulerFocusIndex", "containerType"] }] });
|
|
132
|
+
`, isInline: true, components: [{ type: i3.AgendaHeaderItemComponent, selector: "[kendoSchedulerAgendaHeaderItem]", inputs: ["kendoSchedulerAgendaHeaderItem", "agendaDateTemplate"] }, { type: i4.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: i5.AgendaTaskItemComponent, selector: "[kendoSchedulerAgendaTaskItem]", inputs: ["kendoSchedulerAgendaTaskItem", "color", "eventTemplate", "editable"] }], directives: [{ type: i6.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i6.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i6.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i6.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i7.FocusableDirective, selector: "[kendoSchedulerFocusIndex]", inputs: ["kendoSchedulerFocusIndex", "containerType"] }] });
|
|
127
133
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AgendaListComponent, decorators: [{
|
|
128
134
|
type: Component,
|
|
129
135
|
args: [{
|
|
@@ -147,16 +153,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
147
153
|
<div *ngIf="!agendaTimeTemplate">
|
|
148
154
|
<kendo-icon-wrapper
|
|
149
155
|
*ngIf="extractDataItem(item).tail"
|
|
150
|
-
name="
|
|
151
|
-
[svgIcon]="
|
|
156
|
+
[name]="arrowIcons[0]"
|
|
157
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
152
158
|
>
|
|
153
159
|
</kendo-icon-wrapper>
|
|
154
160
|
|
|
155
161
|
{{ formatTime(extractDataItem(item)) }}
|
|
156
162
|
<kendo-icon-wrapper
|
|
157
163
|
*ngIf="extractDataItem(item).head"
|
|
158
|
-
name="
|
|
159
|
-
[svgIcon]="
|
|
164
|
+
[name]="arrowIcons[1]"
|
|
165
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
160
166
|
>
|
|
161
167
|
</kendo-icon-wrapper>
|
|
162
168
|
</div>
|
|
@@ -42,8 +42,8 @@ DayTimeViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
42
42
|
<span class="k-event-actions">
|
|
43
43
|
<kendo-icon-wrapper
|
|
44
44
|
*ngIf="item.tail && !vertical"
|
|
45
|
-
name="
|
|
46
|
-
[svgIcon]="
|
|
45
|
+
[name]="arrowIcons[0]"
|
|
46
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
47
47
|
>
|
|
48
48
|
</kendo-icon-wrapper>
|
|
49
49
|
<kendo-icon-wrapper
|
|
@@ -73,8 +73,8 @@ DayTimeViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
73
73
|
</span>
|
|
74
74
|
<kendo-icon-wrapper
|
|
75
75
|
*ngIf="item.head && !vertical"
|
|
76
|
-
name="
|
|
77
|
-
[svgIcon]="
|
|
76
|
+
[name]="arrowIcons[1]"
|
|
77
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
78
78
|
>
|
|
79
79
|
</kendo-icon-wrapper>
|
|
80
80
|
</span>
|
|
@@ -96,7 +96,7 @@ DayTimeViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
96
96
|
<span class="k-resize-handle k-resize-w"></span>
|
|
97
97
|
<span class="k-resize-handle k-resize-e"></span>
|
|
98
98
|
</ng-container>
|
|
99
|
-
`, isInline: true, components: [{ type: i5.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i6.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
99
|
+
`, isInline: true, components: [{ type: i5.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i6.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
100
100
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DayTimeViewItemComponent, decorators: [{
|
|
101
101
|
type: Component,
|
|
102
102
|
args: [{
|
|
@@ -106,8 +106,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
106
106
|
<span class="k-event-actions">
|
|
107
107
|
<kendo-icon-wrapper
|
|
108
108
|
*ngIf="item.tail && !vertical"
|
|
109
|
-
name="
|
|
110
|
-
[svgIcon]="
|
|
109
|
+
[name]="arrowIcons[0]"
|
|
110
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
111
111
|
>
|
|
112
112
|
</kendo-icon-wrapper>
|
|
113
113
|
<kendo-icon-wrapper
|
|
@@ -137,8 +137,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
137
137
|
</span>
|
|
138
138
|
<kendo-icon-wrapper
|
|
139
139
|
*ngIf="item.head && !vertical"
|
|
140
|
-
name="
|
|
141
|
-
[svgIcon]="
|
|
140
|
+
[name]="arrowIcons[1]"
|
|
141
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
142
142
|
>
|
|
143
143
|
</kendo-icon-wrapper>
|
|
144
144
|
</span>
|
|
@@ -103,7 +103,7 @@ MonthSlotComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
103
103
|
>
|
|
104
104
|
</kendo-icon-wrapper>
|
|
105
105
|
</div>
|
|
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 } });
|
|
106
|
+
`, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], pipes: { "kendoDate": i5.DatePipe } });
|
|
107
107
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: MonthSlotComponent, decorators: [{
|
|
108
108
|
type: Component,
|
|
109
109
|
args: [{
|
|
@@ -43,8 +43,8 @@ MonthViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
43
43
|
<span class="k-event-actions">
|
|
44
44
|
<kendo-icon-wrapper
|
|
45
45
|
*ngIf="item.tail"
|
|
46
|
-
name="
|
|
47
|
-
[svgIcon]="
|
|
46
|
+
[name]="arrowIcons[0]"
|
|
47
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
48
48
|
>
|
|
49
49
|
</kendo-icon-wrapper>
|
|
50
50
|
<kendo-icon-wrapper
|
|
@@ -73,8 +73,8 @@ MonthViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
73
73
|
</span>
|
|
74
74
|
<kendo-icon-wrapper
|
|
75
75
|
*ngIf="item.head"
|
|
76
|
-
name="
|
|
77
|
-
[svgIcon]="
|
|
76
|
+
[name]="arrowIcons[1]"
|
|
77
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
78
78
|
>
|
|
79
79
|
</kendo-icon-wrapper>
|
|
80
80
|
</span>
|
|
@@ -83,7 +83,7 @@ MonthViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
83
83
|
<span class="k-resize-handle k-resize-w"></span>
|
|
84
84
|
<span class="k-resize-handle k-resize-e"></span>
|
|
85
85
|
</ng-container>
|
|
86
|
-
`, isInline: true, components: [{ type: i4.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i5.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
86
|
+
`, isInline: true, components: [{ type: i4.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i5.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
87
87
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: MonthViewItemComponent, decorators: [{
|
|
88
88
|
type: Component,
|
|
89
89
|
args: [{
|
|
@@ -93,8 +93,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
93
93
|
<span class="k-event-actions">
|
|
94
94
|
<kendo-icon-wrapper
|
|
95
95
|
*ngIf="item.tail"
|
|
96
|
-
name="
|
|
97
|
-
[svgIcon]="
|
|
96
|
+
[name]="arrowIcons[0]"
|
|
97
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
98
98
|
>
|
|
99
99
|
</kendo-icon-wrapper>
|
|
100
100
|
<kendo-icon-wrapper
|
|
@@ -123,8 +123,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
123
123
|
</span>
|
|
124
124
|
<kendo-icon-wrapper
|
|
125
125
|
*ngIf="item.head"
|
|
126
|
-
name="
|
|
127
|
-
[svgIcon]="
|
|
126
|
+
[name]="arrowIcons[1]"
|
|
127
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
128
128
|
>
|
|
129
129
|
</kendo-icon-wrapper>
|
|
130
130
|
</span>
|
|
@@ -10,6 +10,7 @@ import { BaseSlotService } from './base-slot.service';
|
|
|
10
10
|
import { isRecurrence, isRecurrenceException, formatEventTime } from '../utils';
|
|
11
11
|
import { FocusService } from '../../navigation';
|
|
12
12
|
import { toLocalDate } from '@progress/kendo-date-math';
|
|
13
|
+
import { caretAltLeftIcon, caretAltRightIcon } from '@progress/kendo-svg-icons';
|
|
13
14
|
import * as i0 from "@angular/core";
|
|
14
15
|
import * as i1 from "./base-slot.service";
|
|
15
16
|
import * as i2 from "@progress/kendo-angular-l10n";
|
|
@@ -26,6 +27,8 @@ export class BaseViewItem {
|
|
|
26
27
|
this.renderer = renderer;
|
|
27
28
|
this.localeId = localeId;
|
|
28
29
|
this.className = true;
|
|
30
|
+
this.caretAltLeftIcon = caretAltLeftIcon;
|
|
31
|
+
this.caretAltRightIcon = caretAltRightIcon;
|
|
29
32
|
this.subs = new Subscription();
|
|
30
33
|
}
|
|
31
34
|
get taskIndex() {
|
|
@@ -134,6 +137,12 @@ export class BaseViewItem {
|
|
|
134
137
|
this.slotService.unregisterItem(this);
|
|
135
138
|
this.subs.unsubscribe();
|
|
136
139
|
}
|
|
140
|
+
get arrowIcons() {
|
|
141
|
+
return !this.localization.rtl ? ['caret-alt-left', 'caret-alt-right'] : ['caret-alt-right', 'caret-alt-left'];
|
|
142
|
+
}
|
|
143
|
+
get arrowSVGIcons() {
|
|
144
|
+
return this.localization.rtl ? [this.caretAltLeftIcon, this.caretAltRightIcon] : [this.caretAltRightIcon, this.caretAltLeftIcon];
|
|
145
|
+
}
|
|
137
146
|
}
|
|
138
147
|
BaseViewItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BaseViewItem, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
|
|
139
148
|
BaseViewItem.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: BaseViewItem, inputs: { item: "item", resourceIndex: "resourceIndex", rangeIndex: "rangeIndex", index: "index", eventTemplate: "eventTemplate", editable: "editable", dragHint: "dragHint", resources: "resources" }, host: { properties: { "class.k-event": "this.className", "attr.data-task-index": "this.taskIndex", "style.touch-action": "this.touchAction", "attr.aria-label": "this.eventTitle" } }, usesOnChanges: true, ngImport: i0 });
|
|
@@ -48,8 +48,8 @@ const packageMetadata = {
|
|
|
48
48
|
name: '@progress/kendo-angular-scheduler',
|
|
49
49
|
productName: 'Kendo UI for Angular',
|
|
50
50
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
51
|
-
publishDate:
|
|
52
|
-
version: '13.0.0-develop.
|
|
51
|
+
publishDate: 1685095215,
|
|
52
|
+
version: '13.0.0-develop.6',
|
|
53
53
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
54
54
|
};
|
|
55
55
|
|
|
@@ -2520,6 +2520,12 @@ class ToolbarNavigationComponent {
|
|
|
2520
2520
|
this.dateRangeText.current = isDesktop ? this.dateRangeText.long : this.dateRangeText.short;
|
|
2521
2521
|
this.cd.detectChanges();
|
|
2522
2522
|
}
|
|
2523
|
+
get arrowIcons() {
|
|
2524
|
+
return !this.localization.rtl ? ['caret-alt-left', 'caret-alt-right'] : ['caret-alt-right', 'caret-alt-left'];
|
|
2525
|
+
}
|
|
2526
|
+
get arrowSVGIcons() {
|
|
2527
|
+
return !this.localization.rtl ? ['caretAltLeftIcon', 'caretAltRightIcon'] : ['caretAltRightIcon', 'caretAltLeftIcon'];
|
|
2528
|
+
}
|
|
2523
2529
|
}
|
|
2524
2530
|
ToolbarNavigationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ToolbarNavigationComponent, deps: [{ token: i1$2.PopupService }, { token: ToolbarService }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: ViewContextService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2525
2531
|
ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ToolbarNavigationComponent, selector: "[kendoSchedulerToolbarNavigation]", inputs: { min: "min", max: "max" }, host: { properties: { "class.k-toolbar-group": "this.hostClass" } }, providers: [
|
|
@@ -2537,8 +2543,8 @@ ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
2537
2543
|
<button kendoButton
|
|
2538
2544
|
(click)="prevClick()"
|
|
2539
2545
|
class="k-nav-prev"
|
|
2540
|
-
icon="
|
|
2541
|
-
[svgIcon]="svgIcon(
|
|
2546
|
+
[icon]="arrowIcons[0]"
|
|
2547
|
+
[svgIcon]="svgIcon(arrowSVGIcons[0])"
|
|
2542
2548
|
[attr.title]="previousText"
|
|
2543
2549
|
[attr.aria-label]="previousText"
|
|
2544
2550
|
[kendoSchedulerFocusIndex]="0"
|
|
@@ -2548,8 +2554,8 @@ ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
2548
2554
|
(click)="nextClick()"
|
|
2549
2555
|
type="button"
|
|
2550
2556
|
class="k-nav-next"
|
|
2551
|
-
icon="
|
|
2552
|
-
[svgIcon]="svgIcon(
|
|
2557
|
+
[icon]="arrowIcons[1]"
|
|
2558
|
+
[svgIcon]="svgIcon(arrowSVGIcons[1])"
|
|
2553
2559
|
[attr.title]="nextText"
|
|
2554
2560
|
[attr.aria-label]="nextText"
|
|
2555
2561
|
[kendoSchedulerFocusIndex]="0"
|
|
@@ -2609,8 +2615,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2609
2615
|
<button kendoButton
|
|
2610
2616
|
(click)="prevClick()"
|
|
2611
2617
|
class="k-nav-prev"
|
|
2612
|
-
icon="
|
|
2613
|
-
[svgIcon]="svgIcon(
|
|
2618
|
+
[icon]="arrowIcons[0]"
|
|
2619
|
+
[svgIcon]="svgIcon(arrowSVGIcons[0])"
|
|
2614
2620
|
[attr.title]="previousText"
|
|
2615
2621
|
[attr.aria-label]="previousText"
|
|
2616
2622
|
[kendoSchedulerFocusIndex]="0"
|
|
@@ -2620,8 +2626,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2620
2626
|
(click)="nextClick()"
|
|
2621
2627
|
type="button"
|
|
2622
2628
|
class="k-nav-next"
|
|
2623
|
-
icon="
|
|
2624
|
-
[svgIcon]="svgIcon(
|
|
2629
|
+
[icon]="arrowIcons[1]"
|
|
2630
|
+
[svgIcon]="svgIcon(arrowSVGIcons[1])"
|
|
2625
2631
|
[attr.title]="nextText"
|
|
2626
2632
|
[attr.aria-label]="nextText"
|
|
2627
2633
|
[kendoSchedulerFocusIndex]="0"
|
|
@@ -8320,7 +8326,7 @@ AgendaTaskItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
8320
8326
|
<kendo-icon-wrapper name="x" [svgIcon]="xIcon"></kendo-icon-wrapper>
|
|
8321
8327
|
</span>
|
|
8322
8328
|
</div>
|
|
8323
|
-
`, isInline: true, components: [{ type: i4$1.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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
8329
|
+
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
8324
8330
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AgendaTaskItemComponent, decorators: [{
|
|
8325
8331
|
type: Component,
|
|
8326
8332
|
args: [{
|
|
@@ -8372,9 +8378,9 @@ class AgendaListComponent {
|
|
|
8372
8378
|
constructor(intlService, localization) {
|
|
8373
8379
|
this.intlService = intlService;
|
|
8374
8380
|
this.localization = localization;
|
|
8381
|
+
this.classes = true;
|
|
8375
8382
|
this.caretAltLeftIcon = caretAltLeftIcon;
|
|
8376
8383
|
this.caretAltRightIcon = caretAltRightIcon;
|
|
8377
|
-
this.classes = true;
|
|
8378
8384
|
}
|
|
8379
8385
|
extractDataItem(item) {
|
|
8380
8386
|
return item.type === "group" ? item.dataItem.items[0] : item.dataItem;
|
|
@@ -8423,6 +8429,12 @@ class AgendaListComponent {
|
|
|
8423
8429
|
});
|
|
8424
8430
|
}
|
|
8425
8431
|
}
|
|
8432
|
+
get arrowIcons() {
|
|
8433
|
+
return !this.localization.rtl ? ['caret-alt-left', 'caret-alt-right'] : ['caret-alt-right', 'caret-alt-left'];
|
|
8434
|
+
}
|
|
8435
|
+
get arrowSVGIcons() {
|
|
8436
|
+
return !this.localization.rtl ? [this.caretAltLeftIcon, this.caretAltRightIcon] : [this.caretAltRightIcon, this.caretAltLeftIcon];
|
|
8437
|
+
}
|
|
8426
8438
|
}
|
|
8427
8439
|
AgendaListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AgendaListComponent, deps: [{ token: i1$4.IntlService }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
8428
8440
|
AgendaListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AgendaListComponent, selector: "[kendoSchedulerAgendaList]", inputs: { tasks: "tasks", eventTemplate: "eventTemplate", slotClass: "slotClass", eventClass: "eventClass", eventStyles: "eventStyles", agendaTimeTemplate: "agendaTimeTemplate", agendaDateTemplate: "agendaDateTemplate", editable: "editable" }, host: { properties: { "class.k-scheduler-content": "this.classes" } }, ngImport: i0, template: `
|
|
@@ -8443,16 +8455,16 @@ AgendaListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
8443
8455
|
<div *ngIf="!agendaTimeTemplate">
|
|
8444
8456
|
<kendo-icon-wrapper
|
|
8445
8457
|
*ngIf="extractDataItem(item).tail"
|
|
8446
|
-
name="
|
|
8447
|
-
[svgIcon]="
|
|
8458
|
+
[name]="arrowIcons[0]"
|
|
8459
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
8448
8460
|
>
|
|
8449
8461
|
</kendo-icon-wrapper>
|
|
8450
8462
|
|
|
8451
8463
|
{{ formatTime(extractDataItem(item)) }}
|
|
8452
8464
|
<kendo-icon-wrapper
|
|
8453
8465
|
*ngIf="extractDataItem(item).head"
|
|
8454
|
-
name="
|
|
8455
|
-
[svgIcon]="
|
|
8466
|
+
[name]="arrowIcons[1]"
|
|
8467
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
8456
8468
|
>
|
|
8457
8469
|
</kendo-icon-wrapper>
|
|
8458
8470
|
</div>
|
|
@@ -8472,7 +8484,7 @@ AgendaListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
8472
8484
|
</ng-container>
|
|
8473
8485
|
</tbody>
|
|
8474
8486
|
</table>
|
|
8475
|
-
`, isInline: true, components: [{ type: AgendaHeaderItemComponent, selector: "[kendoSchedulerAgendaHeaderItem]", inputs: ["kendoSchedulerAgendaHeaderItem", "agendaDateTemplate"] }, { type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: AgendaTaskItemComponent, selector: "[kendoSchedulerAgendaTaskItem]", inputs: ["kendoSchedulerAgendaTaskItem", "color", "eventTemplate", "editable"] }], directives: [{ type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i11.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: FocusableDirective, selector: "[kendoSchedulerFocusIndex]", inputs: ["kendoSchedulerFocusIndex", "containerType"] }] });
|
|
8487
|
+
`, isInline: true, components: [{ type: AgendaHeaderItemComponent, selector: "[kendoSchedulerAgendaHeaderItem]", inputs: ["kendoSchedulerAgendaHeaderItem", "agendaDateTemplate"] }, { type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: AgendaTaskItemComponent, selector: "[kendoSchedulerAgendaTaskItem]", inputs: ["kendoSchedulerAgendaTaskItem", "color", "eventTemplate", "editable"] }], directives: [{ type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i11.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: FocusableDirective, selector: "[kendoSchedulerFocusIndex]", inputs: ["kendoSchedulerFocusIndex", "containerType"] }] });
|
|
8476
8488
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AgendaListComponent, decorators: [{
|
|
8477
8489
|
type: Component,
|
|
8478
8490
|
args: [{
|
|
@@ -8496,16 +8508,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
8496
8508
|
<div *ngIf="!agendaTimeTemplate">
|
|
8497
8509
|
<kendo-icon-wrapper
|
|
8498
8510
|
*ngIf="extractDataItem(item).tail"
|
|
8499
|
-
name="
|
|
8500
|
-
[svgIcon]="
|
|
8511
|
+
[name]="arrowIcons[0]"
|
|
8512
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
8501
8513
|
>
|
|
8502
8514
|
</kendo-icon-wrapper>
|
|
8503
8515
|
|
|
8504
8516
|
{{ formatTime(extractDataItem(item)) }}
|
|
8505
8517
|
<kendo-icon-wrapper
|
|
8506
8518
|
*ngIf="extractDataItem(item).head"
|
|
8507
|
-
name="
|
|
8508
|
-
[svgIcon]="
|
|
8519
|
+
[name]="arrowIcons[1]"
|
|
8520
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
8509
8521
|
>
|
|
8510
8522
|
</kendo-icon-wrapper>
|
|
8511
8523
|
</div>
|
|
@@ -9123,6 +9135,8 @@ class BaseViewItem {
|
|
|
9123
9135
|
this.renderer = renderer;
|
|
9124
9136
|
this.localeId = localeId;
|
|
9125
9137
|
this.className = true;
|
|
9138
|
+
this.caretAltLeftIcon = caretAltLeftIcon;
|
|
9139
|
+
this.caretAltRightIcon = caretAltRightIcon;
|
|
9126
9140
|
this.subs = new Subscription();
|
|
9127
9141
|
}
|
|
9128
9142
|
get taskIndex() {
|
|
@@ -9231,6 +9245,12 @@ class BaseViewItem {
|
|
|
9231
9245
|
this.slotService.unregisterItem(this);
|
|
9232
9246
|
this.subs.unsubscribe();
|
|
9233
9247
|
}
|
|
9248
|
+
get arrowIcons() {
|
|
9249
|
+
return !this.localization.rtl ? ['caret-alt-left', 'caret-alt-right'] : ['caret-alt-right', 'caret-alt-left'];
|
|
9250
|
+
}
|
|
9251
|
+
get arrowSVGIcons() {
|
|
9252
|
+
return this.localization.rtl ? [this.caretAltLeftIcon, this.caretAltRightIcon] : [this.caretAltRightIcon, this.caretAltLeftIcon];
|
|
9253
|
+
}
|
|
9234
9254
|
}
|
|
9235
9255
|
BaseViewItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BaseViewItem, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
|
|
9236
9256
|
BaseViewItem.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: BaseViewItem, inputs: { item: "item", resourceIndex: "resourceIndex", rangeIndex: "rangeIndex", index: "index", eventTemplate: "eventTemplate", editable: "editable", dragHint: "dragHint", resources: "resources" }, host: { properties: { "class.k-event": "this.className", "attr.data-task-index": "this.taskIndex", "style.touch-action": "this.touchAction", "attr.aria-label": "this.eventTitle" } }, usesOnChanges: true, ngImport: i0 });
|
|
@@ -9615,8 +9635,8 @@ MonthViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
9615
9635
|
<span class="k-event-actions">
|
|
9616
9636
|
<kendo-icon-wrapper
|
|
9617
9637
|
*ngIf="item.tail"
|
|
9618
|
-
name="
|
|
9619
|
-
[svgIcon]="
|
|
9638
|
+
[name]="arrowIcons[0]"
|
|
9639
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
9620
9640
|
>
|
|
9621
9641
|
</kendo-icon-wrapper>
|
|
9622
9642
|
<kendo-icon-wrapper
|
|
@@ -9645,8 +9665,8 @@ MonthViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
9645
9665
|
</span>
|
|
9646
9666
|
<kendo-icon-wrapper
|
|
9647
9667
|
*ngIf="item.head"
|
|
9648
|
-
name="
|
|
9649
|
-
[svgIcon]="
|
|
9668
|
+
[name]="arrowIcons[1]"
|
|
9669
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
9650
9670
|
>
|
|
9651
9671
|
</kendo-icon-wrapper>
|
|
9652
9672
|
</span>
|
|
@@ -9655,7 +9675,7 @@ MonthViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
9655
9675
|
<span class="k-resize-handle k-resize-w"></span>
|
|
9656
9676
|
<span class="k-resize-handle k-resize-e"></span>
|
|
9657
9677
|
</ng-container>
|
|
9658
|
-
`, isInline: true, components: [{ type: i4$1.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"] }] });
|
|
9678
|
+
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
9659
9679
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: MonthViewItemComponent, decorators: [{
|
|
9660
9680
|
type: Component,
|
|
9661
9681
|
args: [{
|
|
@@ -9665,8 +9685,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9665
9685
|
<span class="k-event-actions">
|
|
9666
9686
|
<kendo-icon-wrapper
|
|
9667
9687
|
*ngIf="item.tail"
|
|
9668
|
-
name="
|
|
9669
|
-
[svgIcon]="
|
|
9688
|
+
[name]="arrowIcons[0]"
|
|
9689
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
9670
9690
|
>
|
|
9671
9691
|
</kendo-icon-wrapper>
|
|
9672
9692
|
<kendo-icon-wrapper
|
|
@@ -9695,8 +9715,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9695
9715
|
</span>
|
|
9696
9716
|
<kendo-icon-wrapper
|
|
9697
9717
|
*ngIf="item.head"
|
|
9698
|
-
name="
|
|
9699
|
-
[svgIcon]="
|
|
9718
|
+
[name]="arrowIcons[1]"
|
|
9719
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
9700
9720
|
>
|
|
9701
9721
|
</kendo-icon-wrapper>
|
|
9702
9722
|
</span>
|
|
@@ -10948,7 +10968,7 @@ MonthSlotComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
10948
10968
|
>
|
|
10949
10969
|
</kendo-icon-wrapper>
|
|
10950
10970
|
</div>
|
|
10951
|
-
`, isInline: true, components: [{ type: i4$1.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 } });
|
|
10971
|
+
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], 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 } });
|
|
10952
10972
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: MonthSlotComponent, decorators: [{
|
|
10953
10973
|
type: Component,
|
|
10954
10974
|
args: [{
|
|
@@ -12947,8 +12967,8 @@ DayTimeViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
12947
12967
|
<span class="k-event-actions">
|
|
12948
12968
|
<kendo-icon-wrapper
|
|
12949
12969
|
*ngIf="item.tail && !vertical"
|
|
12950
|
-
name="
|
|
12951
|
-
[svgIcon]="
|
|
12970
|
+
[name]="arrowIcons[0]"
|
|
12971
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
12952
12972
|
>
|
|
12953
12973
|
</kendo-icon-wrapper>
|
|
12954
12974
|
<kendo-icon-wrapper
|
|
@@ -12978,8 +12998,8 @@ DayTimeViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
12978
12998
|
</span>
|
|
12979
12999
|
<kendo-icon-wrapper
|
|
12980
13000
|
*ngIf="item.head && !vertical"
|
|
12981
|
-
name="
|
|
12982
|
-
[svgIcon]="
|
|
13001
|
+
[name]="arrowIcons[1]"
|
|
13002
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
12983
13003
|
>
|
|
12984
13004
|
</kendo-icon-wrapper>
|
|
12985
13005
|
</span>
|
|
@@ -13001,7 +13021,7 @@ DayTimeViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
13001
13021
|
<span class="k-resize-handle k-resize-w"></span>
|
|
13002
13022
|
<span class="k-resize-handle k-resize-e"></span>
|
|
13003
13023
|
</ng-container>
|
|
13004
|
-
`, isInline: true, components: [{ type: i4$1.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"] }] });
|
|
13024
|
+
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
13005
13025
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DayTimeViewItemComponent, decorators: [{
|
|
13006
13026
|
type: Component,
|
|
13007
13027
|
args: [{
|
|
@@ -13011,8 +13031,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
13011
13031
|
<span class="k-event-actions">
|
|
13012
13032
|
<kendo-icon-wrapper
|
|
13013
13033
|
*ngIf="item.tail && !vertical"
|
|
13014
|
-
name="
|
|
13015
|
-
[svgIcon]="
|
|
13034
|
+
[name]="arrowIcons[0]"
|
|
13035
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
13016
13036
|
>
|
|
13017
13037
|
</kendo-icon-wrapper>
|
|
13018
13038
|
<kendo-icon-wrapper
|
|
@@ -13042,8 +13062,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
13042
13062
|
</span>
|
|
13043
13063
|
<kendo-icon-wrapper
|
|
13044
13064
|
*ngIf="item.head && !vertical"
|
|
13045
|
-
name="
|
|
13046
|
-
[svgIcon]="
|
|
13065
|
+
[name]="arrowIcons[1]"
|
|
13066
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
13047
13067
|
>
|
|
13048
13068
|
</kendo-icon-wrapper>
|
|
13049
13069
|
</span>
|
|
@@ -17381,7 +17401,7 @@ PDFCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
17381
17401
|
</span>
|
|
17382
17402
|
<span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
|
|
17383
17403
|
<span class="k-button-text"><ng-content></ng-content></span>
|
|
17384
|
-
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
17404
|
+
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
17385
17405
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDFCommandDirective, decorators: [{
|
|
17386
17406
|
type: Component,
|
|
17387
17407
|
args: [{
|
|
@@ -48,8 +48,8 @@ const packageMetadata = {
|
|
|
48
48
|
name: '@progress/kendo-angular-scheduler',
|
|
49
49
|
productName: 'Kendo UI for Angular',
|
|
50
50
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
51
|
-
publishDate:
|
|
52
|
-
version: '13.0.0-develop.
|
|
51
|
+
publishDate: 1685095215,
|
|
52
|
+
version: '13.0.0-develop.6',
|
|
53
53
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
54
54
|
};
|
|
55
55
|
|
|
@@ -2485,6 +2485,12 @@ class ToolbarNavigationComponent {
|
|
|
2485
2485
|
this.dateRangeText.current = isDesktop ? this.dateRangeText.long : this.dateRangeText.short;
|
|
2486
2486
|
this.cd.detectChanges();
|
|
2487
2487
|
}
|
|
2488
|
+
get arrowIcons() {
|
|
2489
|
+
return !this.localization.rtl ? ['caret-alt-left', 'caret-alt-right'] : ['caret-alt-right', 'caret-alt-left'];
|
|
2490
|
+
}
|
|
2491
|
+
get arrowSVGIcons() {
|
|
2492
|
+
return !this.localization.rtl ? ['caretAltLeftIcon', 'caretAltRightIcon'] : ['caretAltRightIcon', 'caretAltLeftIcon'];
|
|
2493
|
+
}
|
|
2488
2494
|
}
|
|
2489
2495
|
ToolbarNavigationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ToolbarNavigationComponent, deps: [{ token: i1$2.PopupService }, { token: ToolbarService }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: ViewContextService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2490
2496
|
ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ToolbarNavigationComponent, selector: "[kendoSchedulerToolbarNavigation]", inputs: { min: "min", max: "max" }, host: { properties: { "class.k-toolbar-group": "this.hostClass" } }, providers: [
|
|
@@ -2502,8 +2508,8 @@ ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
2502
2508
|
<button kendoButton
|
|
2503
2509
|
(click)="prevClick()"
|
|
2504
2510
|
class="k-nav-prev"
|
|
2505
|
-
icon="
|
|
2506
|
-
[svgIcon]="svgIcon(
|
|
2511
|
+
[icon]="arrowIcons[0]"
|
|
2512
|
+
[svgIcon]="svgIcon(arrowSVGIcons[0])"
|
|
2507
2513
|
[attr.title]="previousText"
|
|
2508
2514
|
[attr.aria-label]="previousText"
|
|
2509
2515
|
[kendoSchedulerFocusIndex]="0"
|
|
@@ -2513,8 +2519,8 @@ ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
2513
2519
|
(click)="nextClick()"
|
|
2514
2520
|
type="button"
|
|
2515
2521
|
class="k-nav-next"
|
|
2516
|
-
icon="
|
|
2517
|
-
[svgIcon]="svgIcon(
|
|
2522
|
+
[icon]="arrowIcons[1]"
|
|
2523
|
+
[svgIcon]="svgIcon(arrowSVGIcons[1])"
|
|
2518
2524
|
[attr.title]="nextText"
|
|
2519
2525
|
[attr.aria-label]="nextText"
|
|
2520
2526
|
[kendoSchedulerFocusIndex]="0"
|
|
@@ -2574,8 +2580,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2574
2580
|
<button kendoButton
|
|
2575
2581
|
(click)="prevClick()"
|
|
2576
2582
|
class="k-nav-prev"
|
|
2577
|
-
icon="
|
|
2578
|
-
[svgIcon]="svgIcon(
|
|
2583
|
+
[icon]="arrowIcons[0]"
|
|
2584
|
+
[svgIcon]="svgIcon(arrowSVGIcons[0])"
|
|
2579
2585
|
[attr.title]="previousText"
|
|
2580
2586
|
[attr.aria-label]="previousText"
|
|
2581
2587
|
[kendoSchedulerFocusIndex]="0"
|
|
@@ -2585,8 +2591,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2585
2591
|
(click)="nextClick()"
|
|
2586
2592
|
type="button"
|
|
2587
2593
|
class="k-nav-next"
|
|
2588
|
-
icon="
|
|
2589
|
-
[svgIcon]="svgIcon(
|
|
2594
|
+
[icon]="arrowIcons[1]"
|
|
2595
|
+
[svgIcon]="svgIcon(arrowSVGIcons[1])"
|
|
2590
2596
|
[attr.title]="nextText"
|
|
2591
2597
|
[attr.aria-label]="nextText"
|
|
2592
2598
|
[kendoSchedulerFocusIndex]="0"
|
|
@@ -8288,7 +8294,7 @@ AgendaTaskItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
8288
8294
|
<kendo-icon-wrapper name="x" [svgIcon]="xIcon"></kendo-icon-wrapper>
|
|
8289
8295
|
</span>
|
|
8290
8296
|
</div>
|
|
8291
|
-
`, isInline: true, components: [{ type: i4$1.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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
8297
|
+
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
8292
8298
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AgendaTaskItemComponent, decorators: [{
|
|
8293
8299
|
type: Component,
|
|
8294
8300
|
args: [{
|
|
@@ -8338,9 +8344,9 @@ class AgendaListComponent {
|
|
|
8338
8344
|
constructor(intlService, localization) {
|
|
8339
8345
|
this.intlService = intlService;
|
|
8340
8346
|
this.localization = localization;
|
|
8347
|
+
this.classes = true;
|
|
8341
8348
|
this.caretAltLeftIcon = caretAltLeftIcon;
|
|
8342
8349
|
this.caretAltRightIcon = caretAltRightIcon;
|
|
8343
|
-
this.classes = true;
|
|
8344
8350
|
}
|
|
8345
8351
|
extractDataItem(item) {
|
|
8346
8352
|
return item.type === "group" ? item.dataItem.items[0] : item.dataItem;
|
|
@@ -8389,6 +8395,12 @@ class AgendaListComponent {
|
|
|
8389
8395
|
});
|
|
8390
8396
|
}
|
|
8391
8397
|
}
|
|
8398
|
+
get arrowIcons() {
|
|
8399
|
+
return !this.localization.rtl ? ['caret-alt-left', 'caret-alt-right'] : ['caret-alt-right', 'caret-alt-left'];
|
|
8400
|
+
}
|
|
8401
|
+
get arrowSVGIcons() {
|
|
8402
|
+
return !this.localization.rtl ? [this.caretAltLeftIcon, this.caretAltRightIcon] : [this.caretAltRightIcon, this.caretAltLeftIcon];
|
|
8403
|
+
}
|
|
8392
8404
|
}
|
|
8393
8405
|
AgendaListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AgendaListComponent, deps: [{ token: i1$4.IntlService }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
8394
8406
|
AgendaListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AgendaListComponent, selector: "[kendoSchedulerAgendaList]", inputs: { tasks: "tasks", eventTemplate: "eventTemplate", slotClass: "slotClass", eventClass: "eventClass", eventStyles: "eventStyles", agendaTimeTemplate: "agendaTimeTemplate", agendaDateTemplate: "agendaDateTemplate", editable: "editable" }, host: { properties: { "class.k-scheduler-content": "this.classes" } }, ngImport: i0, template: `
|
|
@@ -8409,16 +8421,16 @@ AgendaListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
8409
8421
|
<div *ngIf="!agendaTimeTemplate">
|
|
8410
8422
|
<kendo-icon-wrapper
|
|
8411
8423
|
*ngIf="extractDataItem(item).tail"
|
|
8412
|
-
name="
|
|
8413
|
-
[svgIcon]="
|
|
8424
|
+
[name]="arrowIcons[0]"
|
|
8425
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
8414
8426
|
>
|
|
8415
8427
|
</kendo-icon-wrapper>
|
|
8416
8428
|
|
|
8417
8429
|
{{ formatTime(extractDataItem(item)) }}
|
|
8418
8430
|
<kendo-icon-wrapper
|
|
8419
8431
|
*ngIf="extractDataItem(item).head"
|
|
8420
|
-
name="
|
|
8421
|
-
[svgIcon]="
|
|
8432
|
+
[name]="arrowIcons[1]"
|
|
8433
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
8422
8434
|
>
|
|
8423
8435
|
</kendo-icon-wrapper>
|
|
8424
8436
|
</div>
|
|
@@ -8438,7 +8450,7 @@ AgendaListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
8438
8450
|
</ng-container>
|
|
8439
8451
|
</tbody>
|
|
8440
8452
|
</table>
|
|
8441
|
-
`, isInline: true, components: [{ type: AgendaHeaderItemComponent, selector: "[kendoSchedulerAgendaHeaderItem]", inputs: ["kendoSchedulerAgendaHeaderItem", "agendaDateTemplate"] }, { type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: AgendaTaskItemComponent, selector: "[kendoSchedulerAgendaTaskItem]", inputs: ["kendoSchedulerAgendaTaskItem", "color", "eventTemplate", "editable"] }], directives: [{ type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i11.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: FocusableDirective, selector: "[kendoSchedulerFocusIndex]", inputs: ["kendoSchedulerFocusIndex", "containerType"] }] });
|
|
8453
|
+
`, isInline: true, components: [{ type: AgendaHeaderItemComponent, selector: "[kendoSchedulerAgendaHeaderItem]", inputs: ["kendoSchedulerAgendaHeaderItem", "agendaDateTemplate"] }, { type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: AgendaTaskItemComponent, selector: "[kendoSchedulerAgendaTaskItem]", inputs: ["kendoSchedulerAgendaTaskItem", "color", "eventTemplate", "editable"] }], directives: [{ type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i11.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: FocusableDirective, selector: "[kendoSchedulerFocusIndex]", inputs: ["kendoSchedulerFocusIndex", "containerType"] }] });
|
|
8442
8454
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AgendaListComponent, decorators: [{
|
|
8443
8455
|
type: Component,
|
|
8444
8456
|
args: [{
|
|
@@ -8462,16 +8474,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
8462
8474
|
<div *ngIf="!agendaTimeTemplate">
|
|
8463
8475
|
<kendo-icon-wrapper
|
|
8464
8476
|
*ngIf="extractDataItem(item).tail"
|
|
8465
|
-
name="
|
|
8466
|
-
[svgIcon]="
|
|
8477
|
+
[name]="arrowIcons[0]"
|
|
8478
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
8467
8479
|
>
|
|
8468
8480
|
</kendo-icon-wrapper>
|
|
8469
8481
|
|
|
8470
8482
|
{{ formatTime(extractDataItem(item)) }}
|
|
8471
8483
|
<kendo-icon-wrapper
|
|
8472
8484
|
*ngIf="extractDataItem(item).head"
|
|
8473
|
-
name="
|
|
8474
|
-
[svgIcon]="
|
|
8485
|
+
[name]="arrowIcons[1]"
|
|
8486
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
8475
8487
|
>
|
|
8476
8488
|
</kendo-icon-wrapper>
|
|
8477
8489
|
</div>
|
|
@@ -9409,6 +9421,8 @@ class BaseViewItem {
|
|
|
9409
9421
|
this.renderer = renderer;
|
|
9410
9422
|
this.localeId = localeId;
|
|
9411
9423
|
this.className = true;
|
|
9424
|
+
this.caretAltLeftIcon = caretAltLeftIcon;
|
|
9425
|
+
this.caretAltRightIcon = caretAltRightIcon;
|
|
9412
9426
|
this.subs = new Subscription();
|
|
9413
9427
|
}
|
|
9414
9428
|
get taskIndex() {
|
|
@@ -9517,6 +9531,12 @@ class BaseViewItem {
|
|
|
9517
9531
|
this.slotService.unregisterItem(this);
|
|
9518
9532
|
this.subs.unsubscribe();
|
|
9519
9533
|
}
|
|
9534
|
+
get arrowIcons() {
|
|
9535
|
+
return !this.localization.rtl ? ['caret-alt-left', 'caret-alt-right'] : ['caret-alt-right', 'caret-alt-left'];
|
|
9536
|
+
}
|
|
9537
|
+
get arrowSVGIcons() {
|
|
9538
|
+
return this.localization.rtl ? [this.caretAltLeftIcon, this.caretAltRightIcon] : [this.caretAltRightIcon, this.caretAltLeftIcon];
|
|
9539
|
+
}
|
|
9520
9540
|
}
|
|
9521
9541
|
BaseViewItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BaseViewItem, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
|
|
9522
9542
|
BaseViewItem.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: BaseViewItem, inputs: { item: "item", resourceIndex: "resourceIndex", rangeIndex: "rangeIndex", index: "index", eventTemplate: "eventTemplate", editable: "editable", dragHint: "dragHint", resources: "resources" }, host: { properties: { "class.k-event": "this.className", "attr.data-task-index": "this.taskIndex", "style.touch-action": "this.touchAction", "attr.aria-label": "this.eventTitle" } }, usesOnChanges: true, ngImport: i0 });
|
|
@@ -9581,8 +9601,8 @@ MonthViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
9581
9601
|
<span class="k-event-actions">
|
|
9582
9602
|
<kendo-icon-wrapper
|
|
9583
9603
|
*ngIf="item.tail"
|
|
9584
|
-
name="
|
|
9585
|
-
[svgIcon]="
|
|
9604
|
+
[name]="arrowIcons[0]"
|
|
9605
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
9586
9606
|
>
|
|
9587
9607
|
</kendo-icon-wrapper>
|
|
9588
9608
|
<kendo-icon-wrapper
|
|
@@ -9611,8 +9631,8 @@ MonthViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
9611
9631
|
</span>
|
|
9612
9632
|
<kendo-icon-wrapper
|
|
9613
9633
|
*ngIf="item.head"
|
|
9614
|
-
name="
|
|
9615
|
-
[svgIcon]="
|
|
9634
|
+
[name]="arrowIcons[1]"
|
|
9635
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
9616
9636
|
>
|
|
9617
9637
|
</kendo-icon-wrapper>
|
|
9618
9638
|
</span>
|
|
@@ -9621,7 +9641,7 @@ MonthViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
9621
9641
|
<span class="k-resize-handle k-resize-w"></span>
|
|
9622
9642
|
<span class="k-resize-handle k-resize-e"></span>
|
|
9623
9643
|
</ng-container>
|
|
9624
|
-
`, isInline: true, components: [{ type: i4$1.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"] }] });
|
|
9644
|
+
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
9625
9645
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: MonthViewItemComponent, decorators: [{
|
|
9626
9646
|
type: Component,
|
|
9627
9647
|
args: [{
|
|
@@ -9631,8 +9651,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9631
9651
|
<span class="k-event-actions">
|
|
9632
9652
|
<kendo-icon-wrapper
|
|
9633
9653
|
*ngIf="item.tail"
|
|
9634
|
-
name="
|
|
9635
|
-
[svgIcon]="
|
|
9654
|
+
[name]="arrowIcons[0]"
|
|
9655
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
9636
9656
|
>
|
|
9637
9657
|
</kendo-icon-wrapper>
|
|
9638
9658
|
<kendo-icon-wrapper
|
|
@@ -9661,8 +9681,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9661
9681
|
</span>
|
|
9662
9682
|
<kendo-icon-wrapper
|
|
9663
9683
|
*ngIf="item.head"
|
|
9664
|
-
name="
|
|
9665
|
-
[svgIcon]="
|
|
9684
|
+
[name]="arrowIcons[1]"
|
|
9685
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
9666
9686
|
>
|
|
9667
9687
|
</kendo-icon-wrapper>
|
|
9668
9688
|
</span>
|
|
@@ -10943,7 +10963,7 @@ MonthSlotComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
10943
10963
|
>
|
|
10944
10964
|
</kendo-icon-wrapper>
|
|
10945
10965
|
</div>
|
|
10946
|
-
`, isInline: true, components: [{ type: i4$1.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 } });
|
|
10966
|
+
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], 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 } });
|
|
10947
10967
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: MonthSlotComponent, decorators: [{
|
|
10948
10968
|
type: Component,
|
|
10949
10969
|
args: [{
|
|
@@ -12905,8 +12925,8 @@ DayTimeViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
12905
12925
|
<span class="k-event-actions">
|
|
12906
12926
|
<kendo-icon-wrapper
|
|
12907
12927
|
*ngIf="item.tail && !vertical"
|
|
12908
|
-
name="
|
|
12909
|
-
[svgIcon]="
|
|
12928
|
+
[name]="arrowIcons[0]"
|
|
12929
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
12910
12930
|
>
|
|
12911
12931
|
</kendo-icon-wrapper>
|
|
12912
12932
|
<kendo-icon-wrapper
|
|
@@ -12936,8 +12956,8 @@ DayTimeViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
12936
12956
|
</span>
|
|
12937
12957
|
<kendo-icon-wrapper
|
|
12938
12958
|
*ngIf="item.head && !vertical"
|
|
12939
|
-
name="
|
|
12940
|
-
[svgIcon]="
|
|
12959
|
+
[name]="arrowIcons[1]"
|
|
12960
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
12941
12961
|
>
|
|
12942
12962
|
</kendo-icon-wrapper>
|
|
12943
12963
|
</span>
|
|
@@ -12959,7 +12979,7 @@ DayTimeViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
12959
12979
|
<span class="k-resize-handle k-resize-w"></span>
|
|
12960
12980
|
<span class="k-resize-handle k-resize-e"></span>
|
|
12961
12981
|
</ng-container>
|
|
12962
|
-
`, isInline: true, components: [{ type: i4$1.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"] }] });
|
|
12982
|
+
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
12963
12983
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DayTimeViewItemComponent, decorators: [{
|
|
12964
12984
|
type: Component,
|
|
12965
12985
|
args: [{
|
|
@@ -12969,8 +12989,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
12969
12989
|
<span class="k-event-actions">
|
|
12970
12990
|
<kendo-icon-wrapper
|
|
12971
12991
|
*ngIf="item.tail && !vertical"
|
|
12972
|
-
name="
|
|
12973
|
-
[svgIcon]="
|
|
12992
|
+
[name]="arrowIcons[0]"
|
|
12993
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
12974
12994
|
>
|
|
12975
12995
|
</kendo-icon-wrapper>
|
|
12976
12996
|
<kendo-icon-wrapper
|
|
@@ -13000,8 +13020,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
13000
13020
|
</span>
|
|
13001
13021
|
<kendo-icon-wrapper
|
|
13002
13022
|
*ngIf="item.head && !vertical"
|
|
13003
|
-
name="
|
|
13004
|
-
[svgIcon]="
|
|
13023
|
+
[name]="arrowIcons[1]"
|
|
13024
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
13005
13025
|
>
|
|
13006
13026
|
</kendo-icon-wrapper>
|
|
13007
13027
|
</span>
|
|
@@ -17337,7 +17357,7 @@ PDFCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
17337
17357
|
</span>
|
|
17338
17358
|
<span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
|
|
17339
17359
|
<span class="k-button-text"><ng-content></ng-content></span>
|
|
17340
|
-
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
17360
|
+
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
17341
17361
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDFCommandDirective, decorators: [{
|
|
17342
17362
|
type: Component,
|
|
17343
17363
|
args: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-scheduler",
|
|
3
|
-
"version": "13.0.0-develop.
|
|
3
|
+
"version": "13.0.0-develop.6",
|
|
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": "13.0.0-develop.
|
|
29
|
-
"@progress/kendo-angular-common": "13.0.0-develop.
|
|
30
|
-
"@progress/kendo-angular-dateinputs": "13.0.0-develop.
|
|
31
|
-
"@progress/kendo-angular-dialog": "13.0.0-develop.
|
|
32
|
-
"@progress/kendo-angular-dropdowns": "13.0.0-develop.
|
|
33
|
-
"@progress/kendo-angular-icons": "13.0.0-develop.
|
|
34
|
-
"@progress/kendo-angular-inputs": "13.0.0-develop.
|
|
35
|
-
"@progress/kendo-angular-intl": "13.0.0-develop.
|
|
36
|
-
"@progress/kendo-angular-l10n": "13.0.0-develop.
|
|
37
|
-
"@progress/kendo-angular-popup": "13.0.0-develop.
|
|
28
|
+
"@progress/kendo-angular-buttons": "13.0.0-develop.6",
|
|
29
|
+
"@progress/kendo-angular-common": "13.0.0-develop.6",
|
|
30
|
+
"@progress/kendo-angular-dateinputs": "13.0.0-develop.6",
|
|
31
|
+
"@progress/kendo-angular-dialog": "13.0.0-develop.6",
|
|
32
|
+
"@progress/kendo-angular-dropdowns": "13.0.0-develop.6",
|
|
33
|
+
"@progress/kendo-angular-icons": "13.0.0-develop.6",
|
|
34
|
+
"@progress/kendo-angular-inputs": "13.0.0-develop.6",
|
|
35
|
+
"@progress/kendo-angular-intl": "13.0.0-develop.6",
|
|
36
|
+
"@progress/kendo-angular-l10n": "13.0.0-develop.6",
|
|
37
|
+
"@progress/kendo-angular-popup": "13.0.0-develop.6",
|
|
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": "13.0.0-develop.
|
|
42
|
+
"@progress/kendo-angular-schematics": "13.0.0-develop.6",
|
|
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': '13.0.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '13.0.0-develop.6',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '13.0.0-develop.
|
|
9
|
+
'@progress/kendo-angular-dialog': '13.0.0-develop.6',
|
|
10
10
|
// peer dependency of kendo-angular-icons
|
|
11
11
|
'@progress/kendo-svg-icons': '^1.0.0'
|
|
12
12
|
} });
|
|
@@ -110,6 +110,8 @@ export declare class ToolbarNavigationComponent implements OnDestroy {
|
|
|
110
110
|
todayClick(): boolean;
|
|
111
111
|
protected closePopup(): void;
|
|
112
112
|
private setDateRangeText;
|
|
113
|
+
get arrowIcons(): string[];
|
|
114
|
+
get arrowSVGIcons(): string[];
|
|
113
115
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarNavigationComponent, never>;
|
|
114
116
|
static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarNavigationComponent, "[kendoSchedulerToolbarNavigation]", never, { "min": "min"; "max": "max"; }, {}, never, never>;
|
|
115
117
|
}
|
|
@@ -13,8 +13,6 @@ import * as i0 from "@angular/core";
|
|
|
13
13
|
export declare class AgendaListComponent {
|
|
14
14
|
private intlService;
|
|
15
15
|
private localization;
|
|
16
|
-
caretAltLeftIcon: SVGIcon;
|
|
17
|
-
caretAltRightIcon: SVGIcon;
|
|
18
16
|
classes: boolean;
|
|
19
17
|
tasks: any[];
|
|
20
18
|
eventTemplate: TemplateRef<any>;
|
|
@@ -24,12 +22,16 @@ export declare class AgendaListComponent {
|
|
|
24
22
|
agendaTimeTemplate: TemplateRef<any>;
|
|
25
23
|
agendaDateTemplate: TemplateRef<any>;
|
|
26
24
|
editable: any;
|
|
25
|
+
caretAltLeftIcon: SVGIcon;
|
|
26
|
+
caretAltRightIcon: SVGIcon;
|
|
27
27
|
constructor(intlService: IntlService, localization: LocalizationService);
|
|
28
28
|
extractDataItem(item: any): any;
|
|
29
29
|
formatTime(dataItem: any): string;
|
|
30
30
|
trackByFn(index: number, _item: any): any;
|
|
31
31
|
cellClasses(item: any): any[];
|
|
32
32
|
getEventStyles(item: any): any;
|
|
33
|
+
get arrowIcons(): string[];
|
|
34
|
+
get arrowSVGIcons(): SVGIcon[];
|
|
33
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<AgendaListComponent, never>;
|
|
34
36
|
static ɵcmp: i0.ɵɵComponentDeclaration<AgendaListComponent, "[kendoSchedulerAgendaList]", never, { "tasks": "tasks"; "eventTemplate": "eventTemplate"; "slotClass": "slotClass"; "eventClass": "eventClass"; "eventStyles": "eventStyles"; "agendaTimeTemplate": "agendaTimeTemplate"; "agendaDateTemplate": "agendaDateTemplate"; "editable": "editable"; }, {}, never, never>;
|
|
35
37
|
}
|
|
@@ -7,6 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
7
7
|
import { BaseSlotService } from './base-slot.service';
|
|
8
8
|
import { Rect, ViewItem } from './types';
|
|
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
|
|
@@ -33,6 +34,8 @@ export declare class BaseViewItem implements OnInit, OnChanges, OnDestroy, ViewI
|
|
|
33
34
|
get deleteMessage(): string;
|
|
34
35
|
get resizable(): boolean;
|
|
35
36
|
get removable(): boolean;
|
|
37
|
+
caretAltLeftIcon: SVGIcon;
|
|
38
|
+
caretAltRightIcon: SVGIcon;
|
|
36
39
|
rect: Rect;
|
|
37
40
|
private subs;
|
|
38
41
|
constructor(slotService: BaseSlotService, localization: LocalizationService, focusService: FocusService, element: ElementRef, renderer: Renderer2, localeId: string);
|
|
@@ -45,6 +48,8 @@ export declare class BaseViewItem implements OnInit, OnChanges, OnDestroy, ViewI
|
|
|
45
48
|
ngOnInit(): void;
|
|
46
49
|
ngOnChanges(changes: any): void;
|
|
47
50
|
ngOnDestroy(): void;
|
|
51
|
+
get arrowIcons(): string[];
|
|
52
|
+
get arrowSVGIcons(): SVGIcon[];
|
|
48
53
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseViewItem, never>;
|
|
49
54
|
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseViewItem, never, never, { "item": "item"; "resourceIndex": "resourceIndex"; "rangeIndex": "rangeIndex"; "index": "index"; "eventTemplate": "eventTemplate"; "editable": "editable"; "dragHint": "dragHint"; "resources": "resources"; }, {}, never>;
|
|
50
55
|
}
|