@progress/kendo-angular-scheduler 19.2.0-develop.8 → 19.2.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/README.md +6 -3
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/views/day-time/day-time-view-base.mjs +3 -1
- package/fesm2022/progress-kendo-angular-scheduler.mjs +5 -3
- package/package.json +15 -15
- package/schematics/ngAdd/index.js +3 -3
- package/views/day-time/day-time-view-base.d.ts +3 -1
package/README.md
CHANGED
|
@@ -4,9 +4,12 @@
|
|
|
4
4
|
|
|
5
5
|
## Kendo UI for Angular Scheduler
|
|
6
6
|
|
|
7
|
-
> * This package is part of [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui)—a commercial
|
|
8
|
-
> *
|
|
9
|
-
> *
|
|
7
|
+
> * This package is part of [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui/)—a commercial UI library.
|
|
8
|
+
> * To use this package, you must install a license key file, whether you are on a paid license or a 30-day free trial. To receive a license key, either [purchase a license](https://www.telerik.com/purchase/kendo-ui) or start a [free trial](https://www.telerik.com/download-login-v2-kendo-angular-ui).
|
|
9
|
+
> * Adding a valid license key file ensures a seamless experience during the trial period—no watermarks, no warnings, and full access to all components and features.
|
|
10
|
+
> * Trial users can register for a free license key file. Without it, your trial may be interrupted by visual indicators or functionality limitations.
|
|
11
|
+
> * Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI for Angular team!
|
|
12
|
+
> * Learn more: https://www.telerik.com/kendo-angular-ui/components/licensing
|
|
10
13
|
>
|
|
11
14
|
> [Start using Kendo UI for Angular](https://www.telerik.com/download-login-v2-kendo-angular-ui) and speed up your development process!
|
|
12
15
|
|
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: '19.2.0
|
|
13
|
+
publishDate: 1751463389,
|
|
14
|
+
version: '19.2.0',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -58,7 +58,9 @@ export class DayTimeViewBase extends ConfigurationViewBase {
|
|
|
58
58
|
*/
|
|
59
59
|
showFooter;
|
|
60
60
|
/**
|
|
61
|
-
*
|
|
61
|
+
* Sets the height (in pixels) of events in the Scheduler views.
|
|
62
|
+
* For `Month`, `Timeline`, and `Multi-Week` views, it controls the height of regular and all-day events.
|
|
63
|
+
* For `Day` and `Week` views, it controls the height of all-day events.
|
|
62
64
|
*/
|
|
63
65
|
eventHeight;
|
|
64
66
|
/**
|
|
@@ -43,8 +43,8 @@ const packageMetadata = {
|
|
|
43
43
|
productName: 'Kendo UI for Angular',
|
|
44
44
|
productCode: 'KENDOUIANGULAR',
|
|
45
45
|
productCodes: ['KENDOUIANGULAR'],
|
|
46
|
-
publishDate:
|
|
47
|
-
version: '19.2.0
|
|
46
|
+
publishDate: 1751463389,
|
|
47
|
+
version: '19.2.0',
|
|
48
48
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
49
49
|
};
|
|
50
50
|
|
|
@@ -15042,7 +15042,9 @@ class DayTimeViewBase extends ConfigurationViewBase {
|
|
|
15042
15042
|
*/
|
|
15043
15043
|
showFooter;
|
|
15044
15044
|
/**
|
|
15045
|
-
*
|
|
15045
|
+
* Sets the height (in pixels) of events in the Scheduler views.
|
|
15046
|
+
* For `Month`, `Timeline`, and `Multi-Week` views, it controls the height of regular and all-day events.
|
|
15047
|
+
* For `Day` and `Week` views, it controls the height of all-day events.
|
|
15046
15048
|
*/
|
|
15047
15049
|
eventHeight;
|
|
15048
15050
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-scheduler",
|
|
3
|
-
"version": "19.2.0
|
|
3
|
+
"version": "19.2.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",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"package": {
|
|
20
20
|
"productName": "Kendo UI for Angular",
|
|
21
21
|
"productCode": "KENDOUIANGULAR",
|
|
22
|
-
"publishDate":
|
|
22
|
+
"publishDate": 1751463389,
|
|
23
23
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
@@ -32,23 +32,23 @@
|
|
|
32
32
|
"@progress/kendo-data-query": "^1.0.0",
|
|
33
33
|
"@progress/kendo-drawing": "^1.21.0",
|
|
34
34
|
"@progress/kendo-licensing": "^1.5.0",
|
|
35
|
-
"@progress/kendo-angular-tooltip": "19.2.0
|
|
36
|
-
"@progress/kendo-angular-buttons": "19.2.0
|
|
37
|
-
"@progress/kendo-angular-common": "19.2.0
|
|
38
|
-
"@progress/kendo-angular-dateinputs": "19.2.0
|
|
39
|
-
"@progress/kendo-angular-dialog": "19.2.0
|
|
40
|
-
"@progress/kendo-angular-dropdowns": "19.2.0
|
|
41
|
-
"@progress/kendo-angular-icons": "19.2.0
|
|
42
|
-
"@progress/kendo-angular-inputs": "19.2.0
|
|
43
|
-
"@progress/kendo-angular-intl": "19.2.0
|
|
44
|
-
"@progress/kendo-angular-l10n": "19.2.0
|
|
45
|
-
"@progress/kendo-angular-label": "19.2.0
|
|
46
|
-
"@progress/kendo-angular-popup": "19.2.0
|
|
35
|
+
"@progress/kendo-angular-tooltip": "19.2.0",
|
|
36
|
+
"@progress/kendo-angular-buttons": "19.2.0",
|
|
37
|
+
"@progress/kendo-angular-common": "19.2.0",
|
|
38
|
+
"@progress/kendo-angular-dateinputs": "19.2.0",
|
|
39
|
+
"@progress/kendo-angular-dialog": "19.2.0",
|
|
40
|
+
"@progress/kendo-angular-dropdowns": "19.2.0",
|
|
41
|
+
"@progress/kendo-angular-icons": "19.2.0",
|
|
42
|
+
"@progress/kendo-angular-inputs": "19.2.0",
|
|
43
|
+
"@progress/kendo-angular-intl": "19.2.0",
|
|
44
|
+
"@progress/kendo-angular-l10n": "19.2.0",
|
|
45
|
+
"@progress/kendo-angular-label": "19.2.0",
|
|
46
|
+
"@progress/kendo-angular-popup": "19.2.0",
|
|
47
47
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"tslib": "^2.3.1",
|
|
51
|
-
"@progress/kendo-angular-schematics": "19.2.0
|
|
51
|
+
"@progress/kendo-angular-schematics": "19.2.0",
|
|
52
52
|
"@progress/kendo-date-math": "^1.3.2",
|
|
53
53
|
"@progress/kendo-draggable": "^3.0.2",
|
|
54
54
|
"@progress/kendo-file-saver": "^1.0.7",
|
|
@@ -4,10 +4,10 @@ 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 deps of the dropdowns
|
|
7
|
-
'@progress/kendo-angular-treeview': '19.2.0
|
|
8
|
-
'@progress/kendo-angular-navigation': '19.2.0
|
|
7
|
+
'@progress/kendo-angular-treeview': '19.2.0',
|
|
8
|
+
'@progress/kendo-angular-navigation': '19.2.0',
|
|
9
9
|
// peer dependency of kendo-angular-inputs
|
|
10
|
-
'@progress/kendo-angular-dialog': '19.2.0
|
|
10
|
+
'@progress/kendo-angular-dialog': '19.2.0',
|
|
11
11
|
// peer dependency of kendo-angular-icons
|
|
12
12
|
'@progress/kendo-svg-icons': '^4.0.0'
|
|
13
13
|
} });
|
|
@@ -42,7 +42,9 @@ export declare abstract class DayTimeViewBase extends ConfigurationViewBase impl
|
|
|
42
42
|
*/
|
|
43
43
|
showFooter: boolean;
|
|
44
44
|
/**
|
|
45
|
-
*
|
|
45
|
+
* Sets the height (in pixels) of events in the Scheduler views.
|
|
46
|
+
* For `Month`, `Timeline`, and `Multi-Week` views, it controls the height of regular and all-day events.
|
|
47
|
+
* For `Day` and `Week` views, it controls the height of all-day events.
|
|
46
48
|
*/
|
|
47
49
|
eventHeight: number;
|
|
48
50
|
/**
|