@progress/kendo-angular-gantt 19.3.0-develop.32 → 19.3.0-develop.33
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 } from '@progress/kendo-angular-common';
|
|
11
|
+
import { anyChanged, EventsOutsideAngularDirective, hasObservers, Keys, shouldShowValidationUI, getLicenseMessage, WatermarkOverlayComponent, normalizeNumpadKeys } 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';
|
|
@@ -1306,30 +1306,32 @@ export class GanttComponent {
|
|
|
1306
1306
|
}
|
|
1307
1307
|
}
|
|
1308
1308
|
handleKeydown(event) {
|
|
1309
|
-
const {
|
|
1309
|
+
const { target, altKey } = event;
|
|
1310
|
+
// on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
|
|
1311
|
+
const code = normalizeNumpadKeys(event);
|
|
1310
1312
|
const isTimelineActive = this.timeline.timelineContent.nativeElement.contains(target);
|
|
1311
1313
|
if (isTimelineActive) {
|
|
1312
|
-
if (isArrowUpDownKey(
|
|
1313
|
-
const direction =
|
|
1314
|
+
if (isArrowUpDownKey(code)) {
|
|
1315
|
+
const direction = code === Keys.ArrowUp ? -1 : 1;
|
|
1314
1316
|
this.navigation.activeTimelineIndex = this.activeTimelineIndex + direction;
|
|
1315
1317
|
this.navigation.updateActiveTreeListCell();
|
|
1316
1318
|
}
|
|
1317
|
-
else if (
|
|
1319
|
+
else if (code === Keys.Home) {
|
|
1318
1320
|
this.navigation.activeTimelineIndex = 0;
|
|
1319
1321
|
this.navigation.updateActiveTreeListCell();
|
|
1320
1322
|
}
|
|
1321
|
-
else if (
|
|
1323
|
+
else if (code === Keys.End) {
|
|
1322
1324
|
const lastAvailableIndex = this.treeList.view.data.length - 1;
|
|
1323
1325
|
this.navigation.activeTimelineIndex = lastAvailableIndex;
|
|
1324
1326
|
this.navigation.updateActiveTreeListCell();
|
|
1325
1327
|
}
|
|
1326
|
-
if (isNavigationKey(
|
|
1328
|
+
if (isNavigationKey(code)) {
|
|
1327
1329
|
this.navigation.scrollHorizontallyToTask();
|
|
1328
1330
|
this.scrollSyncService.syncScrollTop('timeline', 'treelist');
|
|
1329
1331
|
this.navigation.notifyTaskStatusChange();
|
|
1330
1332
|
event.preventDefault();
|
|
1331
1333
|
}
|
|
1332
|
-
if (
|
|
1334
|
+
if (code === Keys.Space && hasObservers(this.selectionChange)) {
|
|
1333
1335
|
const task = this.renderedTreeListItems[this.activeTimelineIndex];
|
|
1334
1336
|
const selectionAction = this.getSelectionAction(event, task);
|
|
1335
1337
|
if (isPresent(task) && !this.isSameSelection(selectionAction, task)) {
|
|
@@ -1337,17 +1339,17 @@ export class GanttComponent {
|
|
|
1337
1339
|
}
|
|
1338
1340
|
event.preventDefault();
|
|
1339
1341
|
}
|
|
1340
|
-
if (
|
|
1342
|
+
if ((code === Keys.Enter) && hasObservers(this.taskClick)) {
|
|
1341
1343
|
const task = this.renderedTreeListItems[this.activeTimelineIndex];
|
|
1342
1344
|
if (isPresent(task)) {
|
|
1343
1345
|
this.zone.run(() => this.notifyTaskClick(event, task, this.activeTimelineIndex));
|
|
1344
1346
|
}
|
|
1345
1347
|
event.preventDefault();
|
|
1346
1348
|
}
|
|
1347
|
-
if (isExpandCollapseKey(
|
|
1349
|
+
if (isExpandCollapseKey(code, altKey)) {
|
|
1348
1350
|
const task = this.renderedTreeListItems[this.activeTimelineIndex];
|
|
1349
1351
|
if (isPresent(task) && this.hasChildren(task)) {
|
|
1350
|
-
const shouldExpand =
|
|
1352
|
+
const shouldExpand = code === Keys.ArrowRight;
|
|
1351
1353
|
const isExpanded = this.isExpanded(task);
|
|
1352
1354
|
const sameState = shouldExpand === isExpanded;
|
|
1353
1355
|
if (!sameState) {
|
|
@@ -1370,7 +1372,7 @@ export class GanttComponent {
|
|
|
1370
1372
|
}
|
|
1371
1373
|
}
|
|
1372
1374
|
const isTreeListActive = this.treeList.wrapper.nativeElement.contains(target);
|
|
1373
|
-
if (
|
|
1375
|
+
if (code === Keys.Delete && (isTimelineActive || isTreeListActive) && hasObservers(this.taskDelete)) {
|
|
1374
1376
|
const taskIndex = isTreeListActive ?
|
|
1375
1377
|
this.treeList.activeCell.dataRowIndex :
|
|
1376
1378
|
this.activeTimelineIndex;
|
|
@@ -1379,8 +1381,8 @@ export class GanttComponent {
|
|
|
1379
1381
|
this.zone.run(() => this.notifyTaskDelete(task));
|
|
1380
1382
|
}
|
|
1381
1383
|
}
|
|
1382
|
-
if (isViewDigitKey(
|
|
1383
|
-
const targetViewIndex = getIndexFromViewDigitKeyCode(
|
|
1384
|
+
if (isViewDigitKey(code) && !isToolbar(target, this.hostElement.nativeElement) && !this.isInEditMode) {
|
|
1385
|
+
const targetViewIndex = getIndexFromViewDigitKeyCode(code);
|
|
1384
1386
|
const availableViews = this.views.toArray();
|
|
1385
1387
|
const targetView = availableViews[targetViewIndex];
|
|
1386
1388
|
if (isPresent(targetView) && targetView.type !== this.activeView) {
|
|
@@ -3,66 +3,58 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { Keys } from '@progress/kendo-angular-common';
|
|
6
|
-
// TODO: add those keys to `import { Keys } from '@progress/kendo-angular-common';`
|
|
7
|
-
var NumpadKeys;
|
|
8
|
-
(function (NumpadKeys) {
|
|
9
|
-
NumpadKeys[NumpadKeys["Digit1"] = 97] = "Digit1";
|
|
10
|
-
NumpadKeys[NumpadKeys["Digit2"] = 98] = "Digit2";
|
|
11
|
-
NumpadKeys[NumpadKeys["Digit3"] = 99] = "Digit3";
|
|
12
|
-
NumpadKeys[NumpadKeys["Digit4"] = 100] = "Digit4";
|
|
13
|
-
})(NumpadKeys || (NumpadKeys = {}));
|
|
14
6
|
/**
|
|
15
7
|
* @hidden
|
|
16
8
|
*/
|
|
17
|
-
export const isArrowUpDownKey = (
|
|
9
|
+
export const isArrowUpDownKey = (code) => [
|
|
18
10
|
Keys.ArrowUp,
|
|
19
11
|
Keys.ArrowDown
|
|
20
|
-
].some(arrowKeyCode =>
|
|
12
|
+
].some(arrowKeyCode => code === arrowKeyCode);
|
|
21
13
|
/**
|
|
22
14
|
* @hidden
|
|
23
15
|
*/
|
|
24
|
-
export const isNavigationKey = (
|
|
16
|
+
export const isNavigationKey = (code) => [
|
|
25
17
|
Keys.ArrowUp,
|
|
26
18
|
Keys.ArrowDown,
|
|
27
19
|
Keys.Home,
|
|
28
20
|
Keys.End
|
|
29
|
-
].some(navigationKeyCode =>
|
|
21
|
+
].some(navigationKeyCode => code === navigationKeyCode);
|
|
30
22
|
/**
|
|
31
23
|
* @hidden
|
|
32
24
|
*/
|
|
33
|
-
export const isExpandCollapseKey = (
|
|
25
|
+
export const isExpandCollapseKey = (code, altKey) => {
|
|
34
26
|
return altKey && [
|
|
35
27
|
Keys.ArrowLeft,
|
|
36
28
|
Keys.ArrowRight
|
|
37
|
-
].some(navigationKeyCode =>
|
|
29
|
+
].some(navigationKeyCode => code === navigationKeyCode);
|
|
38
30
|
};
|
|
39
31
|
/**
|
|
40
32
|
* @hidden
|
|
41
33
|
*/
|
|
42
|
-
export const isViewDigitKey = (
|
|
34
|
+
export const isViewDigitKey = (code) => [
|
|
43
35
|
Keys.Digit1,
|
|
44
|
-
|
|
36
|
+
Keys.Numpad1,
|
|
45
37
|
Keys.Digit2,
|
|
46
|
-
|
|
38
|
+
Keys.Numpad2,
|
|
47
39
|
Keys.Digit3,
|
|
48
|
-
|
|
40
|
+
Keys.Numpad3,
|
|
49
41
|
Keys.Digit4,
|
|
50
|
-
|
|
51
|
-
].some(digitKeyCode =>
|
|
42
|
+
Keys.Numpad4
|
|
43
|
+
].some(digitKeyCode => code === digitKeyCode);
|
|
52
44
|
/**
|
|
53
45
|
* @hidden
|
|
54
46
|
*
|
|
55
47
|
* Returns the corresponding view index for the pressed digit key (Digit 1 => 0, Digit 2 => 1, etc.).
|
|
56
48
|
*/
|
|
57
|
-
export const getIndexFromViewDigitKeyCode = (
|
|
58
|
-
switch (
|
|
59
|
-
case
|
|
49
|
+
export const getIndexFromViewDigitKeyCode = (code) => {
|
|
50
|
+
switch (code) {
|
|
51
|
+
case Keys.Numpad1:
|
|
60
52
|
case Keys.Digit1: return 0;
|
|
61
|
-
case
|
|
53
|
+
case Keys.Numpad2:
|
|
62
54
|
case Keys.Digit2: return 1;
|
|
63
|
-
case
|
|
55
|
+
case Keys.Numpad3:
|
|
64
56
|
case Keys.Digit3: return 2;
|
|
65
|
-
case
|
|
57
|
+
case Keys.Numpad4:
|
|
66
58
|
case Keys.Digit4: return 3;
|
|
67
59
|
default: return null;
|
|
68
60
|
}
|
|
@@ -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.3.0-develop.
|
|
13
|
+
publishDate: 1754590039,
|
|
14
|
+
version: '19.3.0-develop.33',
|
|
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
|
};
|
|
@@ -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, WatermarkOverlayComponent, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
11
|
+
import { Keys, isDocumentAvailable, closestInScope, matchesClasses, isPresent as isPresent$1, EventsOutsideAngularDirective, DraggableDirective, PreventableEvent, anyChanged, closest, isFocusable, focusableSelector, isVisible, getLicenseMessage, shouldShowValidationUI, hasObservers, normalizeNumpadKeys, 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,71 +44,63 @@ const packageMetadata = {
|
|
|
44
44
|
productName: 'Kendo UI for Angular',
|
|
45
45
|
productCode: 'KENDOUIANGULAR',
|
|
46
46
|
productCodes: ['KENDOUIANGULAR'],
|
|
47
|
-
publishDate:
|
|
48
|
-
version: '19.3.0-develop.
|
|
47
|
+
publishDate: 1754590039,
|
|
48
|
+
version: '19.3.0-develop.33',
|
|
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
|
|
|
52
|
-
// TODO: add those keys to `import { Keys } from '@progress/kendo-angular-common';`
|
|
53
|
-
var NumpadKeys;
|
|
54
|
-
(function (NumpadKeys) {
|
|
55
|
-
NumpadKeys[NumpadKeys["Digit1"] = 97] = "Digit1";
|
|
56
|
-
NumpadKeys[NumpadKeys["Digit2"] = 98] = "Digit2";
|
|
57
|
-
NumpadKeys[NumpadKeys["Digit3"] = 99] = "Digit3";
|
|
58
|
-
NumpadKeys[NumpadKeys["Digit4"] = 100] = "Digit4";
|
|
59
|
-
})(NumpadKeys || (NumpadKeys = {}));
|
|
60
52
|
/**
|
|
61
53
|
* @hidden
|
|
62
54
|
*/
|
|
63
|
-
const isArrowUpDownKey = (
|
|
55
|
+
const isArrowUpDownKey = (code) => [
|
|
64
56
|
Keys.ArrowUp,
|
|
65
57
|
Keys.ArrowDown
|
|
66
|
-
].some(arrowKeyCode =>
|
|
58
|
+
].some(arrowKeyCode => code === arrowKeyCode);
|
|
67
59
|
/**
|
|
68
60
|
* @hidden
|
|
69
61
|
*/
|
|
70
|
-
const isNavigationKey = (
|
|
62
|
+
const isNavigationKey = (code) => [
|
|
71
63
|
Keys.ArrowUp,
|
|
72
64
|
Keys.ArrowDown,
|
|
73
65
|
Keys.Home,
|
|
74
66
|
Keys.End
|
|
75
|
-
].some(navigationKeyCode =>
|
|
67
|
+
].some(navigationKeyCode => code === navigationKeyCode);
|
|
76
68
|
/**
|
|
77
69
|
* @hidden
|
|
78
70
|
*/
|
|
79
|
-
const isExpandCollapseKey = (
|
|
71
|
+
const isExpandCollapseKey = (code, altKey) => {
|
|
80
72
|
return altKey && [
|
|
81
73
|
Keys.ArrowLeft,
|
|
82
74
|
Keys.ArrowRight
|
|
83
|
-
].some(navigationKeyCode =>
|
|
75
|
+
].some(navigationKeyCode => code === navigationKeyCode);
|
|
84
76
|
};
|
|
85
77
|
/**
|
|
86
78
|
* @hidden
|
|
87
79
|
*/
|
|
88
|
-
const isViewDigitKey = (
|
|
80
|
+
const isViewDigitKey = (code) => [
|
|
89
81
|
Keys.Digit1,
|
|
90
|
-
|
|
82
|
+
Keys.Numpad1,
|
|
91
83
|
Keys.Digit2,
|
|
92
|
-
|
|
84
|
+
Keys.Numpad2,
|
|
93
85
|
Keys.Digit3,
|
|
94
|
-
|
|
86
|
+
Keys.Numpad3,
|
|
95
87
|
Keys.Digit4,
|
|
96
|
-
|
|
97
|
-
].some(digitKeyCode =>
|
|
88
|
+
Keys.Numpad4
|
|
89
|
+
].some(digitKeyCode => code === digitKeyCode);
|
|
98
90
|
/**
|
|
99
91
|
* @hidden
|
|
100
92
|
*
|
|
101
93
|
* Returns the corresponding view index for the pressed digit key (Digit 1 => 0, Digit 2 => 1, etc.).
|
|
102
94
|
*/
|
|
103
|
-
const getIndexFromViewDigitKeyCode = (
|
|
104
|
-
switch (
|
|
105
|
-
case
|
|
95
|
+
const getIndexFromViewDigitKeyCode = (code) => {
|
|
96
|
+
switch (code) {
|
|
97
|
+
case Keys.Numpad1:
|
|
106
98
|
case Keys.Digit1: return 0;
|
|
107
|
-
case
|
|
99
|
+
case Keys.Numpad2:
|
|
108
100
|
case Keys.Digit2: return 1;
|
|
109
|
-
case
|
|
101
|
+
case Keys.Numpad3:
|
|
110
102
|
case Keys.Digit3: return 2;
|
|
111
|
-
case
|
|
103
|
+
case Keys.Numpad4:
|
|
112
104
|
case Keys.Digit4: return 3;
|
|
113
105
|
default: return null;
|
|
114
106
|
}
|
|
@@ -7225,30 +7217,32 @@ class GanttComponent {
|
|
|
7225
7217
|
}
|
|
7226
7218
|
}
|
|
7227
7219
|
handleKeydown(event) {
|
|
7228
|
-
const {
|
|
7220
|
+
const { target, altKey } = event;
|
|
7221
|
+
// on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
|
|
7222
|
+
const code = normalizeNumpadKeys(event);
|
|
7229
7223
|
const isTimelineActive = this.timeline.timelineContent.nativeElement.contains(target);
|
|
7230
7224
|
if (isTimelineActive) {
|
|
7231
|
-
if (isArrowUpDownKey(
|
|
7232
|
-
const direction =
|
|
7225
|
+
if (isArrowUpDownKey(code)) {
|
|
7226
|
+
const direction = code === Keys.ArrowUp ? -1 : 1;
|
|
7233
7227
|
this.navigation.activeTimelineIndex = this.activeTimelineIndex + direction;
|
|
7234
7228
|
this.navigation.updateActiveTreeListCell();
|
|
7235
7229
|
}
|
|
7236
|
-
else if (
|
|
7230
|
+
else if (code === Keys.Home) {
|
|
7237
7231
|
this.navigation.activeTimelineIndex = 0;
|
|
7238
7232
|
this.navigation.updateActiveTreeListCell();
|
|
7239
7233
|
}
|
|
7240
|
-
else if (
|
|
7234
|
+
else if (code === Keys.End) {
|
|
7241
7235
|
const lastAvailableIndex = this.treeList.view.data.length - 1;
|
|
7242
7236
|
this.navigation.activeTimelineIndex = lastAvailableIndex;
|
|
7243
7237
|
this.navigation.updateActiveTreeListCell();
|
|
7244
7238
|
}
|
|
7245
|
-
if (isNavigationKey(
|
|
7239
|
+
if (isNavigationKey(code)) {
|
|
7246
7240
|
this.navigation.scrollHorizontallyToTask();
|
|
7247
7241
|
this.scrollSyncService.syncScrollTop('timeline', 'treelist');
|
|
7248
7242
|
this.navigation.notifyTaskStatusChange();
|
|
7249
7243
|
event.preventDefault();
|
|
7250
7244
|
}
|
|
7251
|
-
if (
|
|
7245
|
+
if (code === Keys.Space && hasObservers(this.selectionChange)) {
|
|
7252
7246
|
const task = this.renderedTreeListItems[this.activeTimelineIndex];
|
|
7253
7247
|
const selectionAction = this.getSelectionAction(event, task);
|
|
7254
7248
|
if (isPresent(task) && !this.isSameSelection(selectionAction, task)) {
|
|
@@ -7256,17 +7250,17 @@ class GanttComponent {
|
|
|
7256
7250
|
}
|
|
7257
7251
|
event.preventDefault();
|
|
7258
7252
|
}
|
|
7259
|
-
if (
|
|
7253
|
+
if ((code === Keys.Enter) && hasObservers(this.taskClick)) {
|
|
7260
7254
|
const task = this.renderedTreeListItems[this.activeTimelineIndex];
|
|
7261
7255
|
if (isPresent(task)) {
|
|
7262
7256
|
this.zone.run(() => this.notifyTaskClick(event, task, this.activeTimelineIndex));
|
|
7263
7257
|
}
|
|
7264
7258
|
event.preventDefault();
|
|
7265
7259
|
}
|
|
7266
|
-
if (isExpandCollapseKey(
|
|
7260
|
+
if (isExpandCollapseKey(code, altKey)) {
|
|
7267
7261
|
const task = this.renderedTreeListItems[this.activeTimelineIndex];
|
|
7268
7262
|
if (isPresent(task) && this.hasChildren(task)) {
|
|
7269
|
-
const shouldExpand =
|
|
7263
|
+
const shouldExpand = code === Keys.ArrowRight;
|
|
7270
7264
|
const isExpanded = this.isExpanded(task);
|
|
7271
7265
|
const sameState = shouldExpand === isExpanded;
|
|
7272
7266
|
if (!sameState) {
|
|
@@ -7289,7 +7283,7 @@ class GanttComponent {
|
|
|
7289
7283
|
}
|
|
7290
7284
|
}
|
|
7291
7285
|
const isTreeListActive = this.treeList.wrapper.nativeElement.contains(target);
|
|
7292
|
-
if (
|
|
7286
|
+
if (code === Keys.Delete && (isTimelineActive || isTreeListActive) && hasObservers(this.taskDelete)) {
|
|
7293
7287
|
const taskIndex = isTreeListActive ?
|
|
7294
7288
|
this.treeList.activeCell.dataRowIndex :
|
|
7295
7289
|
this.activeTimelineIndex;
|
|
@@ -7298,8 +7292,8 @@ class GanttComponent {
|
|
|
7298
7292
|
this.zone.run(() => this.notifyTaskDelete(task));
|
|
7299
7293
|
}
|
|
7300
7294
|
}
|
|
7301
|
-
if (isViewDigitKey(
|
|
7302
|
-
const targetViewIndex = getIndexFromViewDigitKeyCode(
|
|
7295
|
+
if (isViewDigitKey(code) && !isToolbar(target, this.hostElement.nativeElement) && !this.isInEditMode) {
|
|
7296
|
+
const targetViewIndex = getIndexFromViewDigitKeyCode(code);
|
|
7303
7297
|
const availableViews = this.views.toArray();
|
|
7304
7298
|
const targetView = availableViews[targetViewIndex];
|
|
7305
7299
|
if (isPresent(targetView) && targetView.type !== this.activeView) {
|
package/navigation/utils.d.ts
CHANGED
|
@@ -5,22 +5,22 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @hidden
|
|
7
7
|
*/
|
|
8
|
-
export declare const isArrowUpDownKey: (
|
|
8
|
+
export declare const isArrowUpDownKey: (code: string) => boolean;
|
|
9
9
|
/**
|
|
10
10
|
* @hidden
|
|
11
11
|
*/
|
|
12
|
-
export declare const isNavigationKey: (
|
|
12
|
+
export declare const isNavigationKey: (code: string) => boolean;
|
|
13
13
|
/**
|
|
14
14
|
* @hidden
|
|
15
15
|
*/
|
|
16
|
-
export declare const isExpandCollapseKey: (
|
|
16
|
+
export declare const isExpandCollapseKey: (code: string, altKey: boolean) => boolean;
|
|
17
17
|
/**
|
|
18
18
|
* @hidden
|
|
19
19
|
*/
|
|
20
|
-
export declare const isViewDigitKey: (
|
|
20
|
+
export declare const isViewDigitKey: (code: string) => boolean;
|
|
21
21
|
/**
|
|
22
22
|
* @hidden
|
|
23
23
|
*
|
|
24
24
|
* Returns the corresponding view index for the pressed digit key (Digit 1 => 0, Digit 2 => 1, etc.).
|
|
25
25
|
*/
|
|
26
|
-
export declare const getIndexFromViewDigitKeyCode: (
|
|
26
|
+
export declare const getIndexFromViewDigitKeyCode: (code: string) => number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-gantt",
|
|
3
|
-
"version": "19.3.0-develop.
|
|
3
|
+
"version": "19.3.0-develop.33",
|
|
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": 1754590039,
|
|
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": "16 - 20",
|
|
32
32
|
"@progress/kendo-data-query": "^1.5.5",
|
|
33
33
|
"@progress/kendo-licensing": "^1.7.0",
|
|
34
|
-
"@progress/kendo-angular-buttons": "19.3.0-develop.
|
|
35
|
-
"@progress/kendo-angular-common": "19.3.0-develop.
|
|
36
|
-
"@progress/kendo-angular-dialog": "19.3.0-develop.
|
|
37
|
-
"@progress/kendo-angular-dropdowns": "19.3.0-develop.
|
|
38
|
-
"@progress/kendo-angular-grid": "19.3.0-develop.
|
|
39
|
-
"@progress/kendo-angular-icons": "19.3.0-develop.
|
|
40
|
-
"@progress/kendo-angular-inputs": "19.3.0-develop.
|
|
41
|
-
"@progress/kendo-angular-intl": "19.3.0-develop.
|
|
42
|
-
"@progress/kendo-angular-l10n": "19.3.0-develop.
|
|
43
|
-
"@progress/kendo-angular-label": "19.3.0-develop.
|
|
44
|
-
"@progress/kendo-angular-layout": "19.3.0-develop.
|
|
45
|
-
"@progress/kendo-angular-popup": "19.3.0-develop.
|
|
46
|
-
"@progress/kendo-angular-tooltip": "19.3.0-develop.
|
|
47
|
-
"@progress/kendo-angular-treelist": "19.3.0-develop.
|
|
34
|
+
"@progress/kendo-angular-buttons": "19.3.0-develop.33",
|
|
35
|
+
"@progress/kendo-angular-common": "19.3.0-develop.33",
|
|
36
|
+
"@progress/kendo-angular-dialog": "19.3.0-develop.33",
|
|
37
|
+
"@progress/kendo-angular-dropdowns": "19.3.0-develop.33",
|
|
38
|
+
"@progress/kendo-angular-grid": "19.3.0-develop.33",
|
|
39
|
+
"@progress/kendo-angular-icons": "19.3.0-develop.33",
|
|
40
|
+
"@progress/kendo-angular-inputs": "19.3.0-develop.33",
|
|
41
|
+
"@progress/kendo-angular-intl": "19.3.0-develop.33",
|
|
42
|
+
"@progress/kendo-angular-l10n": "19.3.0-develop.33",
|
|
43
|
+
"@progress/kendo-angular-label": "19.3.0-develop.33",
|
|
44
|
+
"@progress/kendo-angular-layout": "19.3.0-develop.33",
|
|
45
|
+
"@progress/kendo-angular-popup": "19.3.0-develop.33",
|
|
46
|
+
"@progress/kendo-angular-tooltip": "19.3.0-develop.33",
|
|
47
|
+
"@progress/kendo-angular-treelist": "19.3.0-develop.33",
|
|
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": "19.3.0-develop.
|
|
52
|
+
"@progress/kendo-angular-schematics": "19.3.0-develop.33",
|
|
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"
|
|
@@ -7,16 +7,16 @@ function default_1(options) {
|
|
|
7
7
|
// See https://github.com/telerik/kendo-schematics/issues/28
|
|
8
8
|
peerDependencies: {
|
|
9
9
|
// peer deps of the treelist
|
|
10
|
-
'@progress/kendo-angular-dateinputs': '19.3.0-develop.
|
|
11
|
-
'@progress/kendo-angular-excel-export': '19.3.0-develop.
|
|
12
|
-
'@progress/kendo-angular-pdf-export': '19.3.0-develop.
|
|
13
|
-
'@progress/kendo-angular-utils': '19.3.0-develop.
|
|
10
|
+
'@progress/kendo-angular-dateinputs': '19.3.0-develop.33',
|
|
11
|
+
'@progress/kendo-angular-excel-export': '19.3.0-develop.33',
|
|
12
|
+
'@progress/kendo-angular-pdf-export': '19.3.0-develop.33',
|
|
13
|
+
'@progress/kendo-angular-utils': '19.3.0-develop.33',
|
|
14
14
|
'@progress/kendo-drawing': '^1.0.0',
|
|
15
15
|
// peer deps of the dropdowns
|
|
16
|
-
'@progress/kendo-angular-treeview': '19.3.0-develop.
|
|
17
|
-
'@progress/kendo-angular-navigation': '19.3.0-develop.
|
|
16
|
+
'@progress/kendo-angular-treeview': '19.3.0-develop.33',
|
|
17
|
+
'@progress/kendo-angular-navigation': '19.3.0-develop.33',
|
|
18
18
|
// peer dep of the layout
|
|
19
|
-
'@progress/kendo-angular-progressbar': '19.3.0-develop.
|
|
19
|
+
'@progress/kendo-angular-progressbar': '19.3.0-develop.33',
|
|
20
20
|
// peer dep of the icons
|
|
21
21
|
'@progress/kendo-svg-icons': '^4.0.0'
|
|
22
22
|
} });
|