@progress/kendo-angular-scheduler 2.1.6-dev.202110211604 → 2.1.6-dev.202111010913
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/dist/cdn/js/kendo-angular-scheduler.js +1 -1
- package/dist/cdn/main.js +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/toolbar/navigation.component.js +1 -1
- package/dist/es/toolbar/view-selector.component.js +1 -1
- package/dist/es/views/common/view-footer.component.js +1 -1
- package/dist/es2015/index.metadata.json +1 -1
- package/dist/es2015/package-metadata.js +1 -1
- package/dist/es2015/toolbar/navigation.component.js +2 -5
- package/dist/es2015/toolbar/view-selector.component.js +2 -3
- package/dist/es2015/views/common/view-footer.component.js +1 -1
- package/dist/fesm2015/index.js +6 -10
- package/dist/fesm5/index.js +4 -4
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/toolbar/navigation.component.js +1 -1
- package/dist/npm/toolbar/view-selector.component.js +1 -1
- package/dist/npm/views/common/view-footer.component.js +1 -1
- package/dist/systemjs/kendo-angular-scheduler.js +1 -1
- package/package.json +1 -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:
|
|
12
|
+
publishDate: 1635757791,
|
|
13
13
|
version: '',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
15
15
|
};
|
|
@@ -190,11 +190,10 @@ ToolbarNavigationComponent = tslib_1.__decorate([
|
|
|
190
190
|
PopupService
|
|
191
191
|
],
|
|
192
192
|
template: `
|
|
193
|
-
<
|
|
193
|
+
<span class="k-scheduler-navigation k-button-group">
|
|
194
194
|
<button kendoButton
|
|
195
195
|
(click)="todayClick()"
|
|
196
196
|
class="k-nav-today"
|
|
197
|
-
tabindex="-1"
|
|
198
197
|
[attr.title]="todayText"
|
|
199
198
|
>
|
|
200
199
|
<span class="k-button-text">{{todayText}}</span>
|
|
@@ -202,7 +201,6 @@ ToolbarNavigationComponent = tslib_1.__decorate([
|
|
|
202
201
|
<button kendoButton
|
|
203
202
|
(click)="prevClick()"
|
|
204
203
|
class="k-nav-prev"
|
|
205
|
-
tabindex="-1"
|
|
206
204
|
icon="arrow-60-left"
|
|
207
205
|
[attr.title]="previousText"
|
|
208
206
|
[attr.aria-label]="previousText"
|
|
@@ -212,13 +210,12 @@ ToolbarNavigationComponent = tslib_1.__decorate([
|
|
|
212
210
|
(click)="nextClick()"
|
|
213
211
|
type="button"
|
|
214
212
|
class="k-nav-next"
|
|
215
|
-
tabindex="-1"
|
|
216
213
|
icon="arrow-60-right"
|
|
217
214
|
[attr.title]="nextText"
|
|
218
215
|
[attr.aria-label]="nextText"
|
|
219
216
|
>
|
|
220
217
|
</button>
|
|
221
|
-
</
|
|
218
|
+
</span>
|
|
222
219
|
|
|
223
220
|
<a #anchor
|
|
224
221
|
(click)="toggleSelectedDate(anchor, template)"
|
|
@@ -77,8 +77,7 @@ ToolbarViewSelectorComponent = tslib_1.__decorate([
|
|
|
77
77
|
template: `
|
|
78
78
|
<select *ngIf="ctx.views?.length > 1"
|
|
79
79
|
(change)="onChange($event)"
|
|
80
|
-
class="k-views-dropdown k-dropdown"
|
|
81
|
-
tabindex="-1">
|
|
80
|
+
class="k-views-dropdown k-dropdown">
|
|
82
81
|
<option *ngFor="let view of ctx.views"
|
|
83
82
|
[selected]="isSelected(view) == true"
|
|
84
83
|
[value]="view.name"
|
|
@@ -90,7 +89,7 @@ ToolbarViewSelectorComponent = tslib_1.__decorate([
|
|
|
90
89
|
<button kendoButton
|
|
91
90
|
*ngFor="let view of ctx.views"
|
|
92
91
|
[selected]="isSelected(view)"
|
|
93
|
-
|
|
92
|
+
[attr.aria-pressed]="isSelected(view)"
|
|
94
93
|
(click)="select(view)"
|
|
95
94
|
>
|
|
96
95
|
<span class="k-button-text">
|
|
@@ -47,7 +47,7 @@ ViewFooterComponent = tslib_1.__decorate([
|
|
|
47
47
|
// tslint:disable-next-line:component-selector
|
|
48
48
|
selector: '[viewFooter]',
|
|
49
49
|
template: `
|
|
50
|
-
<button type="button"
|
|
50
|
+
<button type="button" class="k-button" *ngFor="let item of items" [ngClass]="item.cssClass" (click)="onItemClick($event, item)">
|
|
51
51
|
<span class="k-button-icon k-icon" [ngClass]="item.iconClass"></span>
|
|
52
52
|
<span class="k-button-text">{{ item.text }}</span>
|
|
53
53
|
</button>
|
package/dist/fesm2015/index.js
CHANGED
|
@@ -32,7 +32,7 @@ const packageMetadata = {
|
|
|
32
32
|
name: '@progress/kendo-angular-scheduler',
|
|
33
33
|
productName: 'Kendo UI for Angular',
|
|
34
34
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
35
|
-
publishDate:
|
|
35
|
+
publishDate: 1635757791,
|
|
36
36
|
version: '',
|
|
37
37
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
38
38
|
};
|
|
@@ -4026,11 +4026,10 @@ ToolbarNavigationComponent = __decorate([
|
|
|
4026
4026
|
PopupService
|
|
4027
4027
|
],
|
|
4028
4028
|
template: `
|
|
4029
|
-
<
|
|
4029
|
+
<span class="k-scheduler-navigation k-button-group">
|
|
4030
4030
|
<button kendoButton
|
|
4031
4031
|
(click)="todayClick()"
|
|
4032
4032
|
class="k-nav-today"
|
|
4033
|
-
tabindex="-1"
|
|
4034
4033
|
[attr.title]="todayText"
|
|
4035
4034
|
>
|
|
4036
4035
|
<span class="k-button-text">{{todayText}}</span>
|
|
@@ -4038,7 +4037,6 @@ ToolbarNavigationComponent = __decorate([
|
|
|
4038
4037
|
<button kendoButton
|
|
4039
4038
|
(click)="prevClick()"
|
|
4040
4039
|
class="k-nav-prev"
|
|
4041
|
-
tabindex="-1"
|
|
4042
4040
|
icon="arrow-60-left"
|
|
4043
4041
|
[attr.title]="previousText"
|
|
4044
4042
|
[attr.aria-label]="previousText"
|
|
@@ -4048,13 +4046,12 @@ ToolbarNavigationComponent = __decorate([
|
|
|
4048
4046
|
(click)="nextClick()"
|
|
4049
4047
|
type="button"
|
|
4050
4048
|
class="k-nav-next"
|
|
4051
|
-
tabindex="-1"
|
|
4052
4049
|
icon="arrow-60-right"
|
|
4053
4050
|
[attr.title]="nextText"
|
|
4054
4051
|
[attr.aria-label]="nextText"
|
|
4055
4052
|
>
|
|
4056
4053
|
</button>
|
|
4057
|
-
</
|
|
4054
|
+
</span>
|
|
4058
4055
|
|
|
4059
4056
|
<a #anchor
|
|
4060
4057
|
(click)="toggleSelectedDate(anchor, template)"
|
|
@@ -4248,8 +4245,7 @@ ToolbarViewSelectorComponent = __decorate([
|
|
|
4248
4245
|
template: `
|
|
4249
4246
|
<select *ngIf="ctx.views?.length > 1"
|
|
4250
4247
|
(change)="onChange($event)"
|
|
4251
|
-
class="k-views-dropdown k-dropdown"
|
|
4252
|
-
tabindex="-1">
|
|
4248
|
+
class="k-views-dropdown k-dropdown">
|
|
4253
4249
|
<option *ngFor="let view of ctx.views"
|
|
4254
4250
|
[selected]="isSelected(view) == true"
|
|
4255
4251
|
[value]="view.name"
|
|
@@ -4261,7 +4257,7 @@ ToolbarViewSelectorComponent = __decorate([
|
|
|
4261
4257
|
<button kendoButton
|
|
4262
4258
|
*ngFor="let view of ctx.views"
|
|
4263
4259
|
[selected]="isSelected(view)"
|
|
4264
|
-
|
|
4260
|
+
[attr.aria-pressed]="isSelected(view)"
|
|
4265
4261
|
(click)="select(view)"
|
|
4266
4262
|
>
|
|
4267
4263
|
<span class="k-button-text">
|
|
@@ -7590,7 +7586,7 @@ ViewFooterComponent = __decorate([
|
|
|
7590
7586
|
// tslint:disable-next-line:component-selector
|
|
7591
7587
|
selector: '[viewFooter]',
|
|
7592
7588
|
template: `
|
|
7593
|
-
<button type="button"
|
|
7589
|
+
<button type="button" class="k-button" *ngFor="let item of items" [ngClass]="item.cssClass" (click)="onItemClick($event, item)">
|
|
7594
7590
|
<span class="k-button-icon k-icon" [ngClass]="item.iconClass"></span>
|
|
7595
7591
|
<span class="k-button-text">{{ item.text }}</span>
|
|
7596
7592
|
</button>
|
package/dist/fesm5/index.js
CHANGED
|
@@ -32,7 +32,7 @@ var packageMetadata = {
|
|
|
32
32
|
name: '@progress/kendo-angular-scheduler',
|
|
33
33
|
productName: 'Kendo UI for Angular',
|
|
34
34
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
35
|
-
publishDate:
|
|
35
|
+
publishDate: 1635757791,
|
|
36
36
|
version: '',
|
|
37
37
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
38
38
|
};
|
|
@@ -3983,7 +3983,7 @@ var ToolbarNavigationComponent = /** @class */ (function () {
|
|
|
3983
3983
|
providers: [
|
|
3984
3984
|
PopupService
|
|
3985
3985
|
],
|
|
3986
|
-
template: "\n <
|
|
3986
|
+
template: "\n <span class=\"k-scheduler-navigation k-button-group\">\n <button kendoButton\n (click)=\"todayClick()\"\n class=\"k-nav-today\"\n [attr.title]=\"todayText\"\n >\n <span class=\"k-button-text\">{{todayText}}</span>\n </button>\n <button kendoButton\n (click)=\"prevClick()\"\n class=\"k-nav-prev\"\n icon=\"arrow-60-left\"\n [attr.title]=\"previousText\"\n [attr.aria-label]=\"previousText\"\n >\n </button>\n <button kendoButton\n (click)=\"nextClick()\"\n type=\"button\"\n class=\"k-nav-next\"\n icon=\"arrow-60-right\"\n [attr.title]=\"nextText\"\n [attr.aria-label]=\"nextText\"\n >\n </button>\n </span>\n\n <a #anchor\n (click)=\"toggleSelectedDate(anchor, template)\"\n role=\"button\"\n href=\"#\"\n class=\"k-nav-current\"\n tabindex=\"-1\"\n >\n <span class=\"k-icon k-i-calendar\"></span>\n <span class=\"k-sm-date-format\">{{ (ctx.dateRange | async)?.shortText }}</span>\n <span class=\"k-lg-date-format\">{{ (ctx.dateRange | async)?.text }}</span>\n </a>\n\n <ng-template #template>\n <kendo-calendar #calendar (blur)=\"onBlur()\" (valueChange)=\"selectDate($event)\" [value]=\"ctx.selectedDate | async\" [min]=\"min\" [max]=\"max\">\n <kendo-calendar-messages [today]=\"calendarTodayText\">\n </kendo-calendar-messages>\n </kendo-calendar>\n </ng-template>\n "
|
|
3987
3987
|
}),
|
|
3988
3988
|
__metadata("design:paramtypes", [PopupService,
|
|
3989
3989
|
ToolbarService,
|
|
@@ -4155,7 +4155,7 @@ var ToolbarViewSelectorComponent = /** @class */ (function () {
|
|
|
4155
4155
|
Component({
|
|
4156
4156
|
// tslint:disable-next-line:component-selector
|
|
4157
4157
|
selector: '[kendoSchedulerToolbarViewSelector]',
|
|
4158
|
-
template: "\n <select *ngIf=\"ctx.views?.length > 1\"\n (change)=\"onChange($event)\"\n class=\"k-views-dropdown k-dropdown\"
|
|
4158
|
+
template: "\n <select *ngIf=\"ctx.views?.length > 1\"\n (change)=\"onChange($event)\"\n class=\"k-views-dropdown k-dropdown\">\n <option *ngFor=\"let view of ctx.views\"\n [selected]=\"isSelected(view) == true\"\n [value]=\"view.name\"\n >\n {{ view.title }}\n </option>\n </select>\n <span class=\"k-scheduler-views k-button-group\">\n <button kendoButton\n *ngFor=\"let view of ctx.views\"\n [selected]=\"isSelected(view)\"\n [attr.aria-pressed]=\"isSelected(view)\"\n (click)=\"select(view)\"\n >\n <span class=\"k-button-text\">\n {{ view.title }}\n </span>\n </button>\n </span>\n "
|
|
4159
4159
|
}),
|
|
4160
4160
|
__metadata("design:paramtypes", [ToolbarService])
|
|
4161
4161
|
], ToolbarViewSelectorComponent);
|
|
@@ -7567,7 +7567,7 @@ var ViewFooterComponent = /** @class */ (function () {
|
|
|
7567
7567
|
Component({
|
|
7568
7568
|
// tslint:disable-next-line:component-selector
|
|
7569
7569
|
selector: '[viewFooter]',
|
|
7570
|
-
template: "\n <button type=\"button\"
|
|
7570
|
+
template: "\n <button type=\"button\" class=\"k-button\" *ngFor=\"let item of items\" [ngClass]=\"item.cssClass\" (click)=\"onItemClick($event, item)\">\n <span class=\"k-button-icon k-icon\" [ngClass]=\"item.iconClass\"></span>\n <span class=\"k-button-text\">{{ item.text }}</span>\n </button>\n "
|
|
7571
7571
|
})
|
|
7572
7572
|
], ViewFooterComponent);
|
|
7573
7573
|
return ViewFooterComponent;
|
|
@@ -11,7 +11,7 @@ exports.packageMetadata = {
|
|
|
11
11
|
name: '@progress/kendo-angular-scheduler',
|
|
12
12
|
productName: 'Kendo UI for Angular',
|
|
13
13
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
14
|
-
publishDate:
|
|
14
|
+
publishDate: 1635757791,
|
|
15
15
|
version: '',
|
|
16
16
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
17
17
|
};
|
|
@@ -215,7 +215,7 @@ var ToolbarNavigationComponent = /** @class */ (function () {
|
|
|
215
215
|
providers: [
|
|
216
216
|
kendo_angular_popup_1.PopupService
|
|
217
217
|
],
|
|
218
|
-
template: "\n <
|
|
218
|
+
template: "\n <span class=\"k-scheduler-navigation k-button-group\">\n <button kendoButton\n (click)=\"todayClick()\"\n class=\"k-nav-today\"\n [attr.title]=\"todayText\"\n >\n <span class=\"k-button-text\">{{todayText}}</span>\n </button>\n <button kendoButton\n (click)=\"prevClick()\"\n class=\"k-nav-prev\"\n icon=\"arrow-60-left\"\n [attr.title]=\"previousText\"\n [attr.aria-label]=\"previousText\"\n >\n </button>\n <button kendoButton\n (click)=\"nextClick()\"\n type=\"button\"\n class=\"k-nav-next\"\n icon=\"arrow-60-right\"\n [attr.title]=\"nextText\"\n [attr.aria-label]=\"nextText\"\n >\n </button>\n </span>\n\n <a #anchor\n (click)=\"toggleSelectedDate(anchor, template)\"\n role=\"button\"\n href=\"#\"\n class=\"k-nav-current\"\n tabindex=\"-1\"\n >\n <span class=\"k-icon k-i-calendar\"></span>\n <span class=\"k-sm-date-format\">{{ (ctx.dateRange | async)?.shortText }}</span>\n <span class=\"k-lg-date-format\">{{ (ctx.dateRange | async)?.text }}</span>\n </a>\n\n <ng-template #template>\n <kendo-calendar #calendar (blur)=\"onBlur()\" (valueChange)=\"selectDate($event)\" [value]=\"ctx.selectedDate | async\" [min]=\"min\" [max]=\"max\">\n <kendo-calendar-messages [today]=\"calendarTodayText\">\n </kendo-calendar-messages>\n </kendo-calendar>\n </ng-template>\n "
|
|
219
219
|
}),
|
|
220
220
|
tslib_1.__metadata("design:paramtypes", [kendo_angular_popup_1.PopupService,
|
|
221
221
|
toolbar_service_1.ToolbarService,
|
|
@@ -79,7 +79,7 @@ var ToolbarViewSelectorComponent = /** @class */ (function () {
|
|
|
79
79
|
core_1.Component({
|
|
80
80
|
// tslint:disable-next-line:component-selector
|
|
81
81
|
selector: '[kendoSchedulerToolbarViewSelector]',
|
|
82
|
-
template: "\n <select *ngIf=\"ctx.views?.length > 1\"\n (change)=\"onChange($event)\"\n class=\"k-views-dropdown k-dropdown\"
|
|
82
|
+
template: "\n <select *ngIf=\"ctx.views?.length > 1\"\n (change)=\"onChange($event)\"\n class=\"k-views-dropdown k-dropdown\">\n <option *ngFor=\"let view of ctx.views\"\n [selected]=\"isSelected(view) == true\"\n [value]=\"view.name\"\n >\n {{ view.title }}\n </option>\n </select>\n <span class=\"k-scheduler-views k-button-group\">\n <button kendoButton\n *ngFor=\"let view of ctx.views\"\n [selected]=\"isSelected(view)\"\n [attr.aria-pressed]=\"isSelected(view)\"\n (click)=\"select(view)\"\n >\n <span class=\"k-button-text\">\n {{ view.title }}\n </span>\n </button>\n </span>\n "
|
|
83
83
|
}),
|
|
84
84
|
tslib_1.__metadata("design:paramtypes", [toolbar_service_1.ToolbarService])
|
|
85
85
|
], ToolbarViewSelectorComponent);
|
|
@@ -44,7 +44,7 @@ var ViewFooterComponent = /** @class */ (function () {
|
|
|
44
44
|
core_1.Component({
|
|
45
45
|
// tslint:disable-next-line:component-selector
|
|
46
46
|
selector: '[viewFooter]',
|
|
47
|
-
template: "\n <button type=\"button\"
|
|
47
|
+
template: "\n <button type=\"button\" class=\"k-button\" *ngFor=\"let item of items\" [ngClass]=\"item.cssClass\" (click)=\"onItemClick($event, item)\">\n <span class=\"k-button-icon k-icon\" [ngClass]=\"item.iconClass\"></span>\n <span class=\"k-button-text\">{{ item.text }}</span>\n </button>\n "
|
|
48
48
|
})
|
|
49
49
|
], ViewFooterComponent);
|
|
50
50
|
return ViewFooterComponent;
|