@progress/kendo-angular-scheduler 16.0.0-develop.23 → 16.0.0-develop.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/views/timeline/timeline-multi-day-view.component.mjs +4 -1
- package/fesm2015/progress-kendo-angular-scheduler.mjs +5 -2
- package/fesm2020/progress-kendo-angular-scheduler.mjs +5 -2
- package/package.json +13 -13
- package/schematics/ngAdd/index.js +2 -2
|
@@ -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: '16.0.0-develop.
|
|
12
|
+
publishDate: 1715667880,
|
|
13
|
+
version: '16.0.0-develop.25',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -12,7 +12,7 @@ import { createTasks } from './utils';
|
|
|
12
12
|
import { toPx } from '../utils';
|
|
13
13
|
import { DayTimeViewComponent } from '../day-time/day-time-view.component';
|
|
14
14
|
import { PDFService } from '../../pdf/pdf.service';
|
|
15
|
-
import { ScrollbarWidthService } from '@progress/kendo-angular-common';
|
|
15
|
+
import { ScrollbarWidthService, isDocumentAvailable } from '@progress/kendo-angular-common';
|
|
16
16
|
import * as i0 from "@angular/core";
|
|
17
17
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
18
18
|
import * as i2 from "../view-context.service";
|
|
@@ -55,6 +55,9 @@ export class TimelineMultiDayViewComponent extends DayTimeViewComponent {
|
|
|
55
55
|
super.ngOnChanges(changes);
|
|
56
56
|
}
|
|
57
57
|
reflow() {
|
|
58
|
+
if (!isDocumentAvailable()) {
|
|
59
|
+
return;
|
|
60
|
+
}
|
|
58
61
|
const slotService = this.slotService;
|
|
59
62
|
this.updateContentHeight();
|
|
60
63
|
slotService.containerSize = this.content.nativeElement.scrollWidth;
|
|
@@ -50,8 +50,8 @@ const packageMetadata = {
|
|
|
50
50
|
name: '@progress/kendo-angular-scheduler',
|
|
51
51
|
productName: 'Kendo UI for Angular',
|
|
52
52
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
53
|
-
publishDate:
|
|
54
|
-
version: '16.0.0-develop.
|
|
53
|
+
publishDate: 1715667880,
|
|
54
|
+
version: '16.0.0-develop.25',
|
|
55
55
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
56
56
|
};
|
|
57
57
|
|
|
@@ -15717,6 +15717,9 @@ class TimelineMultiDayViewComponent extends DayTimeViewComponent {
|
|
|
15717
15717
|
super.ngOnChanges(changes);
|
|
15718
15718
|
}
|
|
15719
15719
|
reflow() {
|
|
15720
|
+
if (!isDocumentAvailable()) {
|
|
15721
|
+
return;
|
|
15722
|
+
}
|
|
15720
15723
|
const slotService = this.slotService;
|
|
15721
15724
|
this.updateContentHeight();
|
|
15722
15725
|
slotService.containerSize = this.content.nativeElement.scrollWidth;
|
|
@@ -50,8 +50,8 @@ const packageMetadata = {
|
|
|
50
50
|
name: '@progress/kendo-angular-scheduler',
|
|
51
51
|
productName: 'Kendo UI for Angular',
|
|
52
52
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
53
|
-
publishDate:
|
|
54
|
-
version: '16.0.0-develop.
|
|
53
|
+
publishDate: 1715667880,
|
|
54
|
+
version: '16.0.0-develop.25',
|
|
55
55
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
56
56
|
};
|
|
57
57
|
|
|
@@ -15668,6 +15668,9 @@ class TimelineMultiDayViewComponent extends DayTimeViewComponent {
|
|
|
15668
15668
|
super.ngOnChanges(changes);
|
|
15669
15669
|
}
|
|
15670
15670
|
reflow() {
|
|
15671
|
+
if (!isDocumentAvailable()) {
|
|
15672
|
+
return;
|
|
15673
|
+
}
|
|
15671
15674
|
const slotService = this.slotService;
|
|
15672
15675
|
this.updateContentHeight();
|
|
15673
15676
|
slotService.containerSize = this.content.nativeElement.scrollWidth;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-scheduler",
|
|
3
|
-
"version": "16.0.0-develop.
|
|
3
|
+
"version": "16.0.0-develop.25",
|
|
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",
|
|
@@ -26,22 +26,22 @@
|
|
|
26
26
|
"@progress/kendo-data-query": "^1.0.0",
|
|
27
27
|
"@progress/kendo-drawing": "^1.19.0",
|
|
28
28
|
"@progress/kendo-licensing": "^1.0.2",
|
|
29
|
-
"@progress/kendo-angular-tooltip": "16.0.0-develop.
|
|
30
|
-
"@progress/kendo-angular-buttons": "16.0.0-develop.
|
|
31
|
-
"@progress/kendo-angular-common": "16.0.0-develop.
|
|
32
|
-
"@progress/kendo-angular-dateinputs": "16.0.0-develop.
|
|
33
|
-
"@progress/kendo-angular-dialog": "16.0.0-develop.
|
|
34
|
-
"@progress/kendo-angular-dropdowns": "16.0.0-develop.
|
|
35
|
-
"@progress/kendo-angular-icons": "16.0.0-develop.
|
|
36
|
-
"@progress/kendo-angular-inputs": "16.0.0-develop.
|
|
37
|
-
"@progress/kendo-angular-intl": "16.0.0-develop.
|
|
38
|
-
"@progress/kendo-angular-l10n": "16.0.0-develop.
|
|
39
|
-
"@progress/kendo-angular-popup": "16.0.0-develop.
|
|
29
|
+
"@progress/kendo-angular-tooltip": "16.0.0-develop.25",
|
|
30
|
+
"@progress/kendo-angular-buttons": "16.0.0-develop.25",
|
|
31
|
+
"@progress/kendo-angular-common": "16.0.0-develop.25",
|
|
32
|
+
"@progress/kendo-angular-dateinputs": "16.0.0-develop.25",
|
|
33
|
+
"@progress/kendo-angular-dialog": "16.0.0-develop.25",
|
|
34
|
+
"@progress/kendo-angular-dropdowns": "16.0.0-develop.25",
|
|
35
|
+
"@progress/kendo-angular-icons": "16.0.0-develop.25",
|
|
36
|
+
"@progress/kendo-angular-inputs": "16.0.0-develop.25",
|
|
37
|
+
"@progress/kendo-angular-intl": "16.0.0-develop.25",
|
|
38
|
+
"@progress/kendo-angular-l10n": "16.0.0-develop.25",
|
|
39
|
+
"@progress/kendo-angular-popup": "16.0.0-develop.25",
|
|
40
40
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"tslib": "^2.3.1",
|
|
44
|
-
"@progress/kendo-angular-schematics": "16.0.0-develop.
|
|
44
|
+
"@progress/kendo-angular-schematics": "16.0.0-develop.25",
|
|
45
45
|
"@progress/kendo-date-math": "^1.3.2",
|
|
46
46
|
"@progress/kendo-draggable": "^3.0.2",
|
|
47
47
|
"@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': '16.0.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '16.0.0-develop.25',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '16.0.0-develop.
|
|
9
|
+
'@progress/kendo-angular-dialog': '16.0.0-develop.25',
|
|
10
10
|
// peer dependency of kendo-angular-icons
|
|
11
11
|
'@progress/kendo-svg-icons': '^3.0.0'
|
|
12
12
|
} });
|