@progress/kendo-angular-scheduler 3.0.2-dev.202202251424 → 3.0.3-dev.202204061046
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 +2 -2
- package/dist/cdn/main.js +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/views/common/base-view.js +3 -0
- package/dist/es/views/utils.js +5 -1
- package/dist/es2015/index.metadata.json +1 -1
- package/dist/es2015/package-metadata.js +1 -1
- package/dist/es2015/views/common/base-view.d.ts +6 -0
- package/dist/es2015/views/common/base-view.js +3 -0
- package/dist/es2015/views/utils.js +5 -1
- package/dist/fesm2015/index.js +9 -2
- package/dist/fesm5/index.js +9 -2
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/views/common/base-view.js +3 -0
- package/dist/npm/views/utils.js +5 -1
- package/dist/systemjs/kendo-angular-scheduler.js +1 -1
- package/package.json +2 -2
|
@@ -9,7 +9,7 @@ export var packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-scheduler',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
12
|
+
publishDate: 1649241774,
|
|
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
|
};
|
|
@@ -33,6 +33,9 @@ var BaseView = /** @class */ (function () {
|
|
|
33
33
|
this.pdfService = pdfService;
|
|
34
34
|
this.localization = localization;
|
|
35
35
|
this.cdr = cdr;
|
|
36
|
+
/**
|
|
37
|
+
* The non-all-day events.
|
|
38
|
+
*/
|
|
36
39
|
this.items = new BehaviorSubject(null);
|
|
37
40
|
this.horizontalResources = [];
|
|
38
41
|
this.verticalResources = [];
|
package/dist/es/views/utils.js
CHANGED
|
@@ -153,7 +153,11 @@ export function eventResources(event, _a) {
|
|
|
153
153
|
for (var valueIdx = 0; valueIdx < values.length; valueIdx++) {
|
|
154
154
|
var dataIdx = getDataIdx(values[valueIdx], resource);
|
|
155
155
|
if (dataIdx < 0) {
|
|
156
|
-
|
|
156
|
+
if (hasGroups) {
|
|
157
|
+
// No match for this resource, but the event might still match other resources.
|
|
158
|
+
continue;
|
|
159
|
+
}
|
|
160
|
+
return [{ leafIdx: 0, resources: [] }];
|
|
157
161
|
}
|
|
158
162
|
var item = resource.data[dataIdx];
|
|
159
163
|
// has groups - need all copies of the multiple resource
|