@progress/kendo-angular-gantt 21.2.0-develop.1 → 21.2.0-develop.11
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.
|
@@ -8,7 +8,7 @@ import { Day } from '@progress/kendo-date-math';
|
|
|
8
8
|
import { Subscription } from 'rxjs';
|
|
9
9
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
10
10
|
import { packageMetadata } from './package-metadata';
|
|
11
|
-
import { anyChanged, EventsOutsideAngularDirective, hasObservers, Keys, shouldShowValidationUI, getLicenseMessage, WatermarkOverlayComponent,
|
|
11
|
+
import { anyChanged, EventsOutsideAngularDirective, hasObservers, Keys, shouldShowValidationUI, getLicenseMessage, WatermarkOverlayComponent, normalizeKeys } from '@progress/kendo-angular-common';
|
|
12
12
|
import { getIndexFromViewDigitKeyCode, isArrowUpDownKey, isExpandCollapseKey, isNavigationKey, isViewDigitKey } from './navigation/utils';
|
|
13
13
|
import { GanttTimelineComponent } from './timeline/gantt-timeline.component';
|
|
14
14
|
import { GanttColumnBase } from './columns/columns';
|
|
@@ -1307,7 +1307,7 @@ export class GanttComponent {
|
|
|
1307
1307
|
handleKeydown(event) {
|
|
1308
1308
|
const { target, altKey } = event;
|
|
1309
1309
|
// on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
|
|
1310
|
-
const code =
|
|
1310
|
+
const code = normalizeKeys(event);
|
|
1311
1311
|
const isTimelineActive = this.timeline.timelineContent.nativeElement.contains(target);
|
|
1312
1312
|
if (isTimelineActive) {
|
|
1313
1313
|
if (isArrowUpDownKey(code)) {
|
|
@@ -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.2.0-develop.
|
|
13
|
+
publishDate: 1764685230,
|
|
14
|
+
version: '21.2.0-develop.11',
|
|
15
15
|
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'
|
|
16
16
|
};
|
|
@@ -168,6 +168,8 @@ export class GanttTimelineComponent {
|
|
|
168
168
|
const popupHeight = popupEl?.offsetHeight ?? 0;
|
|
169
169
|
const popupWidth = popupEl?.offsetWidth ?? 0;
|
|
170
170
|
const taskMove = !(this.taskDragService.leftDragHandle || this.taskDragService.rightDragHandle);
|
|
171
|
+
// the theme does not provide zIndex for the marquee tooltip, thus it is applied here as an intentional exception
|
|
172
|
+
this.popupRef && (this.popupRef.popupElement.style.zIndex += 1000000);
|
|
171
173
|
this.popupRef && (popup.margin = {
|
|
172
174
|
horizontal: taskMove ? taskRect.left - e.offset - this.taskDragService.tasksContainerRect.left - popupWidth / 2 : e.width - taskEl.nativeElement.clientWidth - popupWidth / 2,
|
|
173
175
|
vertical: (taskEl.nativeElement.clientHeight + popupHeight) / 2
|
|
@@ -8,7 +8,7 @@ import { ColumnBase, ColumnComponent, ColumnGroupComponent, SpanColumnComponent,
|
|
|
8
8
|
import { cloneDate, addWeeks, firstDayInWeek, addDays, lastDayOfMonth, getDate, firstDayOfMonth, addMonths, lastMonthOfYear, MS_PER_HOUR, MS_PER_DAY, isEqual } from '@progress/kendo-date-math';
|
|
9
9
|
import { Subject, Subscription, fromEvent, forkJoin, EMPTY, isObservable, of } from 'rxjs';
|
|
10
10
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
11
|
-
import { Keys, isDocumentAvailable, closestInScope, matchesClasses, isPresent as isPresent$1, EventsOutsideAngularDirective, DraggableDirective, PreventableEvent, anyChanged, closest, isFocusable, focusableSelector, isVisible, getLicenseMessage, shouldShowValidationUI, hasObservers,
|
|
11
|
+
import { Keys, isDocumentAvailable, closestInScope, matchesClasses, isPresent as isPresent$1, EventsOutsideAngularDirective, DraggableDirective, PreventableEvent, anyChanged, closest, isFocusable, focusableSelector, isVisible, getLicenseMessage, shouldShowValidationUI, hasObservers, normalizeKeys, WatermarkOverlayComponent, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
12
12
|
import { map, distinctUntilChanged, take, switchMap, expand, reduce, filter } from 'rxjs/operators';
|
|
13
13
|
import { getter, touchEnabled } from '@progress/kendo-common';
|
|
14
14
|
import * as i1 from '@progress/kendo-angular-intl';
|
|
@@ -44,8 +44,8 @@ const packageMetadata = {
|
|
|
44
44
|
productName: 'Kendo UI for Angular',
|
|
45
45
|
productCode: 'KENDOUIANGULAR',
|
|
46
46
|
productCodes: ['KENDOUIANGULAR'],
|
|
47
|
-
publishDate:
|
|
48
|
-
version: '21.2.0-develop.
|
|
47
|
+
publishDate: 1764685230,
|
|
48
|
+
version: '21.2.0-develop.11',
|
|
49
49
|
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'
|
|
50
50
|
};
|
|
51
51
|
|
|
@@ -3344,6 +3344,8 @@ class GanttTimelineComponent {
|
|
|
3344
3344
|
const popupHeight = popupEl?.offsetHeight ?? 0;
|
|
3345
3345
|
const popupWidth = popupEl?.offsetWidth ?? 0;
|
|
3346
3346
|
const taskMove = !(this.taskDragService.leftDragHandle || this.taskDragService.rightDragHandle);
|
|
3347
|
+
// the theme does not provide zIndex for the marquee tooltip, thus it is applied here as an intentional exception
|
|
3348
|
+
this.popupRef && (this.popupRef.popupElement.style.zIndex += 1000000);
|
|
3347
3349
|
this.popupRef && (popup.margin = {
|
|
3348
3350
|
horizontal: taskMove ? taskRect.left - e.offset - this.taskDragService.tasksContainerRect.left - popupWidth / 2 : e.width - taskEl.nativeElement.clientWidth - popupWidth / 2,
|
|
3349
3351
|
vertical: (taskEl.nativeElement.clientHeight + popupHeight) / 2
|
|
@@ -7290,7 +7292,7 @@ class GanttComponent {
|
|
|
7290
7292
|
handleKeydown(event) {
|
|
7291
7293
|
const { target, altKey } = event;
|
|
7292
7294
|
// on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
|
|
7293
|
-
const code =
|
|
7295
|
+
const code = normalizeKeys(event);
|
|
7294
7296
|
const isTimelineActive = this.timeline.timelineContent.nativeElement.contains(target);
|
|
7295
7297
|
if (isTimelineActive) {
|
|
7296
7298
|
if (isArrowUpDownKey(code)) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-gantt",
|
|
3
|
-
"version": "21.2.0-develop.
|
|
3
|
+
"version": "21.2.0-develop.11",
|
|
4
4
|
"description": "Kendo UI Angular Gantt",
|
|
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": 1764685230,
|
|
23
23
|
"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"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
@@ -31,25 +31,25 @@
|
|
|
31
31
|
"@angular/platform-browser": "18 - 21",
|
|
32
32
|
"@progress/kendo-data-query": "^1.5.5",
|
|
33
33
|
"@progress/kendo-licensing": "^1.7.0",
|
|
34
|
-
"@progress/kendo-angular-buttons": "21.2.0-develop.
|
|
35
|
-
"@progress/kendo-angular-common": "21.2.0-develop.
|
|
36
|
-
"@progress/kendo-angular-dialog": "21.2.0-develop.
|
|
37
|
-
"@progress/kendo-angular-dropdowns": "21.2.0-develop.
|
|
38
|
-
"@progress/kendo-angular-grid": "21.2.0-develop.
|
|
39
|
-
"@progress/kendo-angular-icons": "21.2.0-develop.
|
|
40
|
-
"@progress/kendo-angular-inputs": "21.2.0-develop.
|
|
41
|
-
"@progress/kendo-angular-intl": "21.2.0-develop.
|
|
42
|
-
"@progress/kendo-angular-l10n": "21.2.0-develop.
|
|
43
|
-
"@progress/kendo-angular-label": "21.2.0-develop.
|
|
44
|
-
"@progress/kendo-angular-layout": "21.2.0-develop.
|
|
45
|
-
"@progress/kendo-angular-popup": "21.2.0-develop.
|
|
46
|
-
"@progress/kendo-angular-tooltip": "21.2.0-develop.
|
|
47
|
-
"@progress/kendo-angular-treelist": "21.2.0-develop.
|
|
34
|
+
"@progress/kendo-angular-buttons": "21.2.0-develop.11",
|
|
35
|
+
"@progress/kendo-angular-common": "21.2.0-develop.11",
|
|
36
|
+
"@progress/kendo-angular-dialog": "21.2.0-develop.11",
|
|
37
|
+
"@progress/kendo-angular-dropdowns": "21.2.0-develop.11",
|
|
38
|
+
"@progress/kendo-angular-grid": "21.2.0-develop.11",
|
|
39
|
+
"@progress/kendo-angular-icons": "21.2.0-develop.11",
|
|
40
|
+
"@progress/kendo-angular-inputs": "21.2.0-develop.11",
|
|
41
|
+
"@progress/kendo-angular-intl": "21.2.0-develop.11",
|
|
42
|
+
"@progress/kendo-angular-l10n": "21.2.0-develop.11",
|
|
43
|
+
"@progress/kendo-angular-label": "21.2.0-develop.11",
|
|
44
|
+
"@progress/kendo-angular-layout": "21.2.0-develop.11",
|
|
45
|
+
"@progress/kendo-angular-popup": "21.2.0-develop.11",
|
|
46
|
+
"@progress/kendo-angular-tooltip": "21.2.0-develop.11",
|
|
47
|
+
"@progress/kendo-angular-treelist": "21.2.0-develop.11",
|
|
48
48
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"tslib": "^2.3.1",
|
|
52
|
-
"@progress/kendo-angular-schematics": "21.2.0-develop.
|
|
52
|
+
"@progress/kendo-angular-schematics": "21.2.0-develop.11",
|
|
53
53
|
"@progress/kendo-common": "^1.0.1",
|
|
54
54
|
"@progress/kendo-date-math": "^1.5.2",
|
|
55
55
|
"@progress/kendo-draggable": "^3.0.0"
|
|
@@ -12,16 +12,16 @@ function default_1(options) {
|
|
|
12
12
|
// See https://github.com/telerik/kendo-schematics/issues/28
|
|
13
13
|
peerDependencies: {
|
|
14
14
|
// peer deps of the treelist
|
|
15
|
-
'@progress/kendo-angular-dateinputs': '21.2.0-develop.
|
|
16
|
-
'@progress/kendo-angular-excel-export': '21.2.0-develop.
|
|
17
|
-
'@progress/kendo-angular-pdf-export': '21.2.0-develop.
|
|
18
|
-
'@progress/kendo-angular-utils': '21.2.0-develop.
|
|
15
|
+
'@progress/kendo-angular-dateinputs': '21.2.0-develop.11',
|
|
16
|
+
'@progress/kendo-angular-excel-export': '21.2.0-develop.11',
|
|
17
|
+
'@progress/kendo-angular-pdf-export': '21.2.0-develop.11',
|
|
18
|
+
'@progress/kendo-angular-utils': '21.2.0-develop.11',
|
|
19
19
|
'@progress/kendo-drawing': '^1.0.0',
|
|
20
20
|
// peer deps of the dropdowns
|
|
21
|
-
'@progress/kendo-angular-treeview': '21.2.0-develop.
|
|
22
|
-
'@progress/kendo-angular-navigation': '21.2.0-develop.
|
|
21
|
+
'@progress/kendo-angular-treeview': '21.2.0-develop.11',
|
|
22
|
+
'@progress/kendo-angular-navigation': '21.2.0-develop.11',
|
|
23
23
|
// peer dep of the layout
|
|
24
|
-
'@progress/kendo-angular-progressbar': '21.2.0-develop.
|
|
24
|
+
'@progress/kendo-angular-progressbar': '21.2.0-develop.11',
|
|
25
25
|
// peer dep of the icons
|
|
26
26
|
'@progress/kendo-svg-icons': '^4.0.0'
|
|
27
27
|
} });
|