@progress/kendo-angular-scheduler 13.0.0-develop.8 → 13.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/editing/date-time-picker.component.mjs +1 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/pdf/pdf-command.directive.mjs +2 -0
- package/esm2020/views/view-items/base-view-item.mjs +1 -1
- package/fesm2015/progress-kendo-angular-scheduler.mjs +6 -5
- package/fesm2020/progress-kendo-angular-scheduler.mjs +6 -5
- package/package.json +12 -12
- package/schematics/ngAdd/index.js +2 -2
|
@@ -30,7 +30,7 @@ export class SchedulerDateTimePickerComponent {
|
|
|
30
30
|
* @hidden
|
|
31
31
|
*/
|
|
32
32
|
get focusableId() {
|
|
33
|
-
return this.isAllDay ? this.datePicker?.
|
|
33
|
+
return this.isAllDay ? this.datePicker?.focusableId : this.dateTimePicker?.focusableId;
|
|
34
34
|
}
|
|
35
35
|
writeValue(newDate) {
|
|
36
36
|
if (newDate instanceof Date) {
|
|
@@ -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
|
|
12
|
+
publishDate: 1686055750,
|
|
13
|
+
version: '13.0.0',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -6,6 +6,7 @@ import { Component, HostListener, ElementRef, Renderer2, NgZone } from '@angular
|
|
|
6
6
|
import { Button } from '@progress/kendo-angular-buttons';
|
|
7
7
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
8
8
|
import { PDFService } from './pdf.service';
|
|
9
|
+
import { filePdfIcon } from '@progress/kendo-svg-icons';
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
import * as i1 from "./pdf.service";
|
|
11
12
|
import * as i2 from "@progress/kendo-angular-l10n";
|
|
@@ -47,6 +48,7 @@ export class PDFCommandDirective extends Button {
|
|
|
47
48
|
}
|
|
48
49
|
ngOnInit() {
|
|
49
50
|
this.icon = 'pdf';
|
|
51
|
+
this.svgIcon = filePdfIcon;
|
|
50
52
|
}
|
|
51
53
|
}
|
|
52
54
|
PDFCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDFCommandDirective, deps: [{ token: i1.PDFService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -141,7 +141,7 @@ export class BaseViewItem {
|
|
|
141
141
|
return !this.localization.rtl ? ['caret-alt-left', 'caret-alt-right'] : ['caret-alt-right', 'caret-alt-left'];
|
|
142
142
|
}
|
|
143
143
|
get arrowSVGIcons() {
|
|
144
|
-
return this.localization.rtl ? [this.caretAltLeftIcon, this.caretAltRightIcon] : [this.caretAltRightIcon, this.caretAltLeftIcon];
|
|
144
|
+
return !this.localization.rtl ? [this.caretAltLeftIcon, this.caretAltRightIcon] : [this.caretAltRightIcon, this.caretAltLeftIcon];
|
|
145
145
|
}
|
|
146
146
|
}
|
|
147
147
|
BaseViewItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BaseViewItem, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -22,7 +22,7 @@ import * as i1$4 from '@progress/kendo-angular-intl';
|
|
|
22
22
|
import { formatDate, IntlModule, IntlService, CldrIntlService, parseDate } from '@progress/kendo-angular-intl';
|
|
23
23
|
import * as i1$2 from '@progress/kendo-angular-popup';
|
|
24
24
|
import { PopupService, PopupModule } from '@progress/kendo-angular-popup';
|
|
25
|
-
import { caretAltLeftIcon, caretAltRightIcon, calendarIcon, saveIcon, cancelOutlineIcon, arrowRotateCwIcon, arrowsNoRepeatIcon, xIcon, moreHorizontalIcon, clockIcon, caretAltUpIcon, caretAltDownIcon } from '@progress/kendo-svg-icons';
|
|
25
|
+
import { caretAltLeftIcon, caretAltRightIcon, calendarIcon, saveIcon, cancelOutlineIcon, arrowRotateCwIcon, arrowsNoRepeatIcon, xIcon, moreHorizontalIcon, clockIcon, caretAltUpIcon, caretAltDownIcon, filePdfIcon } from '@progress/kendo-svg-icons';
|
|
26
26
|
import * as i4 from '@progress/kendo-angular-buttons';
|
|
27
27
|
import { Button, ButtonsModule } from '@progress/kendo-angular-buttons';
|
|
28
28
|
import * as i11 from '@angular/common';
|
|
@@ -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
|
|
51
|
+
publishDate: 1686055750,
|
|
52
|
+
version: '13.0.0',
|
|
53
53
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
54
54
|
};
|
|
55
55
|
|
|
@@ -3197,7 +3197,7 @@ class SchedulerDateTimePickerComponent {
|
|
|
3197
3197
|
*/
|
|
3198
3198
|
get focusableId() {
|
|
3199
3199
|
var _a, _b;
|
|
3200
|
-
return this.isAllDay ? (_a = this.datePicker) === null || _a === void 0 ? void 0 : _a.
|
|
3200
|
+
return this.isAllDay ? (_a = this.datePicker) === null || _a === void 0 ? void 0 : _a.focusableId : (_b = this.dateTimePicker) === null || _b === void 0 ? void 0 : _b.focusableId;
|
|
3201
3201
|
}
|
|
3202
3202
|
writeValue(newDate) {
|
|
3203
3203
|
if (newDate instanceof Date) {
|
|
@@ -9455,7 +9455,7 @@ class BaseViewItem {
|
|
|
9455
9455
|
return !this.localization.rtl ? ['caret-alt-left', 'caret-alt-right'] : ['caret-alt-right', 'caret-alt-left'];
|
|
9456
9456
|
}
|
|
9457
9457
|
get arrowSVGIcons() {
|
|
9458
|
-
return this.localization.rtl ? [this.caretAltLeftIcon, this.caretAltRightIcon] : [this.caretAltRightIcon, this.caretAltLeftIcon];
|
|
9458
|
+
return !this.localization.rtl ? [this.caretAltLeftIcon, this.caretAltRightIcon] : [this.caretAltRightIcon, this.caretAltLeftIcon];
|
|
9459
9459
|
}
|
|
9460
9460
|
}
|
|
9461
9461
|
BaseViewItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BaseViewItem, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -17595,6 +17595,7 @@ class PDFCommandDirective extends Button {
|
|
|
17595
17595
|
}
|
|
17596
17596
|
ngOnInit() {
|
|
17597
17597
|
this.icon = 'pdf';
|
|
17598
|
+
this.svgIcon = filePdfIcon;
|
|
17598
17599
|
}
|
|
17599
17600
|
}
|
|
17600
17601
|
PDFCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDFCommandDirective, deps: [{ token: PDFService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1$1.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -22,7 +22,7 @@ import * as i1$4 from '@progress/kendo-angular-intl';
|
|
|
22
22
|
import { formatDate, IntlModule, IntlService, CldrIntlService, parseDate } from '@progress/kendo-angular-intl';
|
|
23
23
|
import * as i1$2 from '@progress/kendo-angular-popup';
|
|
24
24
|
import { PopupService, PopupModule } from '@progress/kendo-angular-popup';
|
|
25
|
-
import { caretAltLeftIcon, caretAltRightIcon, calendarIcon, saveIcon, cancelOutlineIcon, arrowRotateCwIcon, arrowsNoRepeatIcon, xIcon, moreHorizontalIcon, clockIcon, caretAltUpIcon, caretAltDownIcon } from '@progress/kendo-svg-icons';
|
|
25
|
+
import { caretAltLeftIcon, caretAltRightIcon, calendarIcon, saveIcon, cancelOutlineIcon, arrowRotateCwIcon, arrowsNoRepeatIcon, xIcon, moreHorizontalIcon, clockIcon, caretAltUpIcon, caretAltDownIcon, filePdfIcon } from '@progress/kendo-svg-icons';
|
|
26
26
|
import * as i4 from '@progress/kendo-angular-buttons';
|
|
27
27
|
import { Button, ButtonsModule } from '@progress/kendo-angular-buttons';
|
|
28
28
|
import * as i11 from '@angular/common';
|
|
@@ -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
|
|
51
|
+
publishDate: 1686055750,
|
|
52
|
+
version: '13.0.0',
|
|
53
53
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
54
54
|
};
|
|
55
55
|
|
|
@@ -3161,7 +3161,7 @@ class SchedulerDateTimePickerComponent {
|
|
|
3161
3161
|
* @hidden
|
|
3162
3162
|
*/
|
|
3163
3163
|
get focusableId() {
|
|
3164
|
-
return this.isAllDay ? this.datePicker?.
|
|
3164
|
+
return this.isAllDay ? this.datePicker?.focusableId : this.dateTimePicker?.focusableId;
|
|
3165
3165
|
}
|
|
3166
3166
|
writeValue(newDate) {
|
|
3167
3167
|
if (newDate instanceof Date) {
|
|
@@ -9740,7 +9740,7 @@ class BaseViewItem {
|
|
|
9740
9740
|
return !this.localization.rtl ? ['caret-alt-left', 'caret-alt-right'] : ['caret-alt-right', 'caret-alt-left'];
|
|
9741
9741
|
}
|
|
9742
9742
|
get arrowSVGIcons() {
|
|
9743
|
-
return this.localization.rtl ? [this.caretAltLeftIcon, this.caretAltRightIcon] : [this.caretAltRightIcon, this.caretAltLeftIcon];
|
|
9743
|
+
return !this.localization.rtl ? [this.caretAltLeftIcon, this.caretAltRightIcon] : [this.caretAltRightIcon, this.caretAltLeftIcon];
|
|
9744
9744
|
}
|
|
9745
9745
|
}
|
|
9746
9746
|
BaseViewItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BaseViewItem, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -17550,6 +17550,7 @@ class PDFCommandDirective extends Button {
|
|
|
17550
17550
|
}
|
|
17551
17551
|
ngOnInit() {
|
|
17552
17552
|
this.icon = 'pdf';
|
|
17553
|
+
this.svgIcon = filePdfIcon;
|
|
17553
17554
|
}
|
|
17554
17555
|
}
|
|
17555
17556
|
PDFCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDFCommandDirective, deps: [{ token: PDFService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1$1.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-scheduler",
|
|
3
|
-
"version": "13.0.0
|
|
3
|
+
"version": "13.0.0",
|
|
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
|
|
29
|
-
"@progress/kendo-angular-common": "13.0.0
|
|
30
|
-
"@progress/kendo-angular-dateinputs": "13.0.0
|
|
31
|
-
"@progress/kendo-angular-dialog": "13.0.0
|
|
32
|
-
"@progress/kendo-angular-dropdowns": "13.0.0
|
|
33
|
-
"@progress/kendo-angular-icons": "13.0.0
|
|
34
|
-
"@progress/kendo-angular-inputs": "13.0.0
|
|
35
|
-
"@progress/kendo-angular-intl": "13.0.0
|
|
36
|
-
"@progress/kendo-angular-l10n": "13.0.0
|
|
37
|
-
"@progress/kendo-angular-popup": "13.0.0
|
|
28
|
+
"@progress/kendo-angular-buttons": "13.0.0",
|
|
29
|
+
"@progress/kendo-angular-common": "13.0.0",
|
|
30
|
+
"@progress/kendo-angular-dateinputs": "13.0.0",
|
|
31
|
+
"@progress/kendo-angular-dialog": "13.0.0",
|
|
32
|
+
"@progress/kendo-angular-dropdowns": "13.0.0",
|
|
33
|
+
"@progress/kendo-angular-icons": "13.0.0",
|
|
34
|
+
"@progress/kendo-angular-inputs": "13.0.0",
|
|
35
|
+
"@progress/kendo-angular-intl": "13.0.0",
|
|
36
|
+
"@progress/kendo-angular-l10n": "13.0.0",
|
|
37
|
+
"@progress/kendo-angular-popup": "13.0.0",
|
|
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
|
|
42
|
+
"@progress/kendo-angular-schematics": "13.0.0",
|
|
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
|
|
7
|
+
'@progress/kendo-angular-treeview': '13.0.0',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '13.0.0
|
|
9
|
+
'@progress/kendo-angular-dialog': '13.0.0',
|
|
10
10
|
// peer dependency of kendo-angular-icons
|
|
11
11
|
'@progress/kendo-svg-icons': '^1.0.0'
|
|
12
12
|
} });
|