@progress/kendo-angular-scheduler 21.0.0-develop.26 → 21.0.0-develop.28
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.
|
@@ -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: '21.0.0-develop.
|
|
13
|
+
publishDate: 1762875133,
|
|
14
|
+
version: '21.0.0-develop.28',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -111,8 +111,9 @@ export class SchedulerComponent {
|
|
|
111
111
|
return this.viewIndex;
|
|
112
112
|
}
|
|
113
113
|
/**
|
|
114
|
-
|
|
115
|
-
|
|
114
|
+
* Specifies whether the Scheduler is editable.
|
|
115
|
+
* When you use an `EditableSettings` object, you can control which actions are enabled, such as adding, editing, dragging, removing, or resizing events.
|
|
116
|
+
* @default false
|
|
116
117
|
*/
|
|
117
118
|
editable = false;
|
|
118
119
|
/**
|
|
@@ -212,11 +213,11 @@ export class SchedulerComponent {
|
|
|
212
213
|
*/
|
|
213
214
|
scrollTime = this.workDayStart;
|
|
214
215
|
/**
|
|
215
|
-
*
|
|
216
|
+
* Configures resource-based grouping in the Scheduler. When set, the Scheduler arranges events into separate lanes or columns according to the resources defined in the `resources` property. Use to enable visual separation and hierarchical organization of events by resource type.
|
|
216
217
|
*/
|
|
217
218
|
group;
|
|
218
219
|
/**
|
|
219
|
-
* Specifies the
|
|
220
|
+
* Specifies the collection of resources available for event assignment in the Scheduler. Each resource describes a category and provides metadata.
|
|
220
221
|
*/
|
|
221
222
|
resources;
|
|
222
223
|
/**
|
|
@@ -241,6 +242,9 @@ export class SchedulerComponent {
|
|
|
241
242
|
selectedView;
|
|
242
243
|
/**
|
|
243
244
|
* Sets the array of event instances shown by the Scheduler.
|
|
245
|
+
*
|
|
246
|
+
* Provide an array of [`SchedulerEvent`](slug:api_scheduler_schedulerevent) objects to display events in the Scheduler.
|
|
247
|
+
* To bind data from custom object schemas, configure the [`modelFields`](slug:api_scheduler_schedulercomponent#modelfields) property to map your custom fields to the Scheduler event fields.
|
|
244
248
|
*/
|
|
245
249
|
set events(value) {
|
|
246
250
|
this._events = value;
|
|
@@ -263,8 +267,10 @@ export class SchedulerComponent {
|
|
|
263
267
|
return this._selectedDate;
|
|
264
268
|
}
|
|
265
269
|
/**
|
|
266
|
-
|
|
267
|
-
|
|
270
|
+
* Sets the names of the model fields from which the Scheduler reads its data ([see example])(slug:databinding_scheduler#binding-to-custom-object-schemas).
|
|
271
|
+
*
|
|
272
|
+
* Use `modelFields` when you want to bind custom event objects with property names that differ from the default [`SchedulerEvent`](slug:api_scheduler_schedulerevent) fields. This lets you map your data to the Scheduler's expected fields.
|
|
273
|
+
*/
|
|
268
274
|
set modelFields(value) {
|
|
269
275
|
this._modelFields = { ...defaultModelFields, ...value };
|
|
270
276
|
}
|
|
@@ -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: '21.0.0-develop.
|
|
46
|
+
publishDate: 1762875133,
|
|
47
|
+
version: '21.0.0-develop.28',
|
|
48
48
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
49
49
|
};
|
|
50
50
|
|
|
@@ -7780,8 +7780,9 @@ class SchedulerComponent {
|
|
|
7780
7780
|
return this.viewIndex;
|
|
7781
7781
|
}
|
|
7782
7782
|
/**
|
|
7783
|
-
|
|
7784
|
-
|
|
7783
|
+
* Specifies whether the Scheduler is editable.
|
|
7784
|
+
* When you use an `EditableSettings` object, you can control which actions are enabled, such as adding, editing, dragging, removing, or resizing events.
|
|
7785
|
+
* @default false
|
|
7785
7786
|
*/
|
|
7786
7787
|
editable = false;
|
|
7787
7788
|
/**
|
|
@@ -7881,11 +7882,11 @@ class SchedulerComponent {
|
|
|
7881
7882
|
*/
|
|
7882
7883
|
scrollTime = this.workDayStart;
|
|
7883
7884
|
/**
|
|
7884
|
-
*
|
|
7885
|
+
* Configures resource-based grouping in the Scheduler. When set, the Scheduler arranges events into separate lanes or columns according to the resources defined in the `resources` property. Use to enable visual separation and hierarchical organization of events by resource type.
|
|
7885
7886
|
*/
|
|
7886
7887
|
group;
|
|
7887
7888
|
/**
|
|
7888
|
-
* Specifies the
|
|
7889
|
+
* Specifies the collection of resources available for event assignment in the Scheduler. Each resource describes a category and provides metadata.
|
|
7889
7890
|
*/
|
|
7890
7891
|
resources;
|
|
7891
7892
|
/**
|
|
@@ -7910,6 +7911,9 @@ class SchedulerComponent {
|
|
|
7910
7911
|
selectedView;
|
|
7911
7912
|
/**
|
|
7912
7913
|
* Sets the array of event instances shown by the Scheduler.
|
|
7914
|
+
*
|
|
7915
|
+
* Provide an array of [`SchedulerEvent`](slug:api_scheduler_schedulerevent) objects to display events in the Scheduler.
|
|
7916
|
+
* To bind data from custom object schemas, configure the [`modelFields`](slug:api_scheduler_schedulercomponent#modelfields) property to map your custom fields to the Scheduler event fields.
|
|
7913
7917
|
*/
|
|
7914
7918
|
set events(value) {
|
|
7915
7919
|
this._events = value;
|
|
@@ -7932,8 +7936,10 @@ class SchedulerComponent {
|
|
|
7932
7936
|
return this._selectedDate;
|
|
7933
7937
|
}
|
|
7934
7938
|
/**
|
|
7935
|
-
|
|
7936
|
-
|
|
7939
|
+
* Sets the names of the model fields from which the Scheduler reads its data ([see example])(slug:databinding_scheduler#binding-to-custom-object-schemas).
|
|
7940
|
+
*
|
|
7941
|
+
* Use `modelFields` when you want to bind custom event objects with property names that differ from the default [`SchedulerEvent`](slug:api_scheduler_schedulerevent) fields. This lets you map your data to the Scheduler's expected fields.
|
|
7942
|
+
*/
|
|
7937
7943
|
set modelFields(value) {
|
|
7938
7944
|
this._modelFields = { ...defaultModelFields, ...value };
|
|
7939
7945
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-scheduler",
|
|
3
|
-
"version": "21.0.0-develop.
|
|
3
|
+
"version": "21.0.0-develop.28",
|
|
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": 1762875133,
|
|
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.7.0",
|
|
35
|
-
"@progress/kendo-angular-tooltip": "21.0.0-develop.
|
|
36
|
-
"@progress/kendo-angular-buttons": "21.0.0-develop.
|
|
37
|
-
"@progress/kendo-angular-common": "21.0.0-develop.
|
|
38
|
-
"@progress/kendo-angular-dateinputs": "21.0.0-develop.
|
|
39
|
-
"@progress/kendo-angular-dialog": "21.0.0-develop.
|
|
40
|
-
"@progress/kendo-angular-dropdowns": "21.0.0-develop.
|
|
41
|
-
"@progress/kendo-angular-icons": "21.0.0-develop.
|
|
42
|
-
"@progress/kendo-angular-inputs": "21.0.0-develop.
|
|
43
|
-
"@progress/kendo-angular-intl": "21.0.0-develop.
|
|
44
|
-
"@progress/kendo-angular-l10n": "21.0.0-develop.
|
|
45
|
-
"@progress/kendo-angular-label": "21.0.0-develop.
|
|
46
|
-
"@progress/kendo-angular-popup": "21.0.0-develop.
|
|
35
|
+
"@progress/kendo-angular-tooltip": "21.0.0-develop.28",
|
|
36
|
+
"@progress/kendo-angular-buttons": "21.0.0-develop.28",
|
|
37
|
+
"@progress/kendo-angular-common": "21.0.0-develop.28",
|
|
38
|
+
"@progress/kendo-angular-dateinputs": "21.0.0-develop.28",
|
|
39
|
+
"@progress/kendo-angular-dialog": "21.0.0-develop.28",
|
|
40
|
+
"@progress/kendo-angular-dropdowns": "21.0.0-develop.28",
|
|
41
|
+
"@progress/kendo-angular-icons": "21.0.0-develop.28",
|
|
42
|
+
"@progress/kendo-angular-inputs": "21.0.0-develop.28",
|
|
43
|
+
"@progress/kendo-angular-intl": "21.0.0-develop.28",
|
|
44
|
+
"@progress/kendo-angular-l10n": "21.0.0-develop.28",
|
|
45
|
+
"@progress/kendo-angular-label": "21.0.0-develop.28",
|
|
46
|
+
"@progress/kendo-angular-popup": "21.0.0-develop.28",
|
|
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": "21.0.0-develop.
|
|
51
|
+
"@progress/kendo-angular-schematics": "21.0.0-develop.28",
|
|
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",
|
package/scheduler.component.d.ts
CHANGED
|
@@ -87,8 +87,9 @@ export declare class SchedulerComponent implements AfterContentInit, OnDestroy,
|
|
|
87
87
|
set selectedViewIndex(index: number);
|
|
88
88
|
get selectedViewIndex(): number;
|
|
89
89
|
/**
|
|
90
|
-
|
|
91
|
-
|
|
90
|
+
* Specifies whether the Scheduler is editable.
|
|
91
|
+
* When you use an `EditableSettings` object, you can control which actions are enabled, such as adding, editing, dragging, removing, or resizing events.
|
|
92
|
+
* @default false
|
|
92
93
|
*/
|
|
93
94
|
editable: boolean | EditableSettings;
|
|
94
95
|
/**
|
|
@@ -181,11 +182,11 @@ export declare class SchedulerComponent implements AfterContentInit, OnDestroy,
|
|
|
181
182
|
*/
|
|
182
183
|
scrollTime: string | Date;
|
|
183
184
|
/**
|
|
184
|
-
*
|
|
185
|
+
* Configures resource-based grouping in the Scheduler. When set, the Scheduler arranges events into separate lanes or columns according to the resources defined in the `resources` property. Use to enable visual separation and hierarchical organization of events by resource type.
|
|
185
186
|
*/
|
|
186
187
|
group: Group;
|
|
187
188
|
/**
|
|
188
|
-
* Specifies the
|
|
189
|
+
* Specifies the collection of resources available for event assignment in the Scheduler. Each resource describes a category and provides metadata.
|
|
189
190
|
*/
|
|
190
191
|
resources: Resource[];
|
|
191
192
|
/**
|
|
@@ -205,6 +206,9 @@ export declare class SchedulerComponent implements AfterContentInit, OnDestroy,
|
|
|
205
206
|
selectedView: SchedulerView;
|
|
206
207
|
/**
|
|
207
208
|
* Sets the array of event instances shown by the Scheduler.
|
|
209
|
+
*
|
|
210
|
+
* Provide an array of [`SchedulerEvent`](slug:api_scheduler_schedulerevent) objects to display events in the Scheduler.
|
|
211
|
+
* To bind data from custom object schemas, configure the [`modelFields`](slug:api_scheduler_schedulercomponent#modelfields) property to map your custom fields to the Scheduler event fields.
|
|
208
212
|
*/
|
|
209
213
|
set events(value: any[]);
|
|
210
214
|
get events(): any[];
|
|
@@ -214,8 +218,10 @@ export declare class SchedulerComponent implements AfterContentInit, OnDestroy,
|
|
|
214
218
|
set selectedDate(value: Date);
|
|
215
219
|
get selectedDate(): Date;
|
|
216
220
|
/**
|
|
217
|
-
|
|
218
|
-
|
|
221
|
+
* Sets the names of the model fields from which the Scheduler reads its data ([see example])(slug:databinding_scheduler#binding-to-custom-object-schemas).
|
|
222
|
+
*
|
|
223
|
+
* Use `modelFields` when you want to bind custom event objects with property names that differ from the default [`SchedulerEvent`](slug:api_scheduler_schedulerevent) fields. This lets you map your data to the Scheduler's expected fields.
|
|
224
|
+
*/
|
|
219
225
|
set modelFields(value: SchedulerModelFields);
|
|
220
226
|
get modelFields(): SchedulerModelFields;
|
|
221
227
|
/**
|
|
@@ -5,10 +5,10 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
5
5
|
function default_1(options) {
|
|
6
6
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'SchedulerModule', package: 'scheduler', peerDependencies: {
|
|
7
7
|
// peer deps of the dropdowns
|
|
8
|
-
'@progress/kendo-angular-treeview': '21.0.0-develop.
|
|
9
|
-
'@progress/kendo-angular-navigation': '21.0.0-develop.
|
|
8
|
+
'@progress/kendo-angular-treeview': '21.0.0-develop.28',
|
|
9
|
+
'@progress/kendo-angular-navigation': '21.0.0-develop.28',
|
|
10
10
|
// peer dependency of kendo-angular-inputs
|
|
11
|
-
'@progress/kendo-angular-dialog': '21.0.0-develop.
|
|
11
|
+
'@progress/kendo-angular-dialog': '21.0.0-develop.28',
|
|
12
12
|
// peer dependency of kendo-angular-icons
|
|
13
13
|
'@progress/kendo-svg-icons': '^4.0.0'
|
|
14
14
|
} });
|