@progress/kendo-angular-grid 21.2.0-develop.9 → 21.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/esm2022/column-menu/column-list.component.mjs +2 -2
- package/esm2022/grouping/group-panel.component.mjs +2 -2
- package/esm2022/navigation/navigation.service.mjs +4 -4
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/rendering/header/header.component.mjs +2 -2
- package/esm2022/rendering/list.component.mjs +2 -2
- package/esm2022/rendering/toolbar/tools/group-toolbar-tool.component.mjs +3 -3
- package/fesm2022/progress-kendo-angular-grid.mjs +12 -12
- package/package.json +24 -24
- package/schematics/ngAdd/index.js +7 -7
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { Component, HostBinding, Input, ElementRef, NgZone, Renderer2, Output, EventEmitter, ViewChildren, QueryList, Optional, ChangeDetectorRef } from '@angular/core';
|
|
6
6
|
import { ColumnMenuService } from './column-menu.service';
|
|
7
7
|
import { ColumnListKeyboardNavigation } from './column-list-kb-nav.service';
|
|
8
|
-
import { Keys,
|
|
8
|
+
import { Keys, normalizeKeys } from '@progress/kendo-angular-common';
|
|
9
9
|
import { Subscription } from 'rxjs';
|
|
10
10
|
import { CheckBoxComponent } from '@progress/kendo-angular-inputs';
|
|
11
11
|
import { take } from 'rxjs/operators';
|
|
@@ -227,7 +227,7 @@ export class ColumnListComponent {
|
|
|
227
227
|
}
|
|
228
228
|
}
|
|
229
229
|
onKeydown = (e) => {
|
|
230
|
-
const code =
|
|
230
|
+
const code = normalizeKeys(e);
|
|
231
231
|
if (code !== Keys.Tab) {
|
|
232
232
|
e.preventDefault();
|
|
233
233
|
}
|
|
@@ -16,7 +16,7 @@ import { ContextService } from '../common/provider.service';
|
|
|
16
16
|
import { PopupService } from '@progress/kendo-angular-popup';
|
|
17
17
|
import { ChipComponent, ChipListComponent } from '@progress/kendo-angular-buttons';
|
|
18
18
|
import { closest } from '../rendering/common/dom-queries';
|
|
19
|
-
import { DraggableDirective, EventsOutsideAngularDirective, Keys,
|
|
19
|
+
import { DraggableDirective, EventsOutsideAngularDirective, Keys, normalizeKeys } from '@progress/kendo-angular-common';
|
|
20
20
|
import { IconWrapperComponent } from '@progress/kendo-angular-icons';
|
|
21
21
|
import { DraggableColumnDirective } from '../dragdrop/draggable-column.directive';
|
|
22
22
|
import * as i0 from "@angular/core";
|
|
@@ -175,7 +175,7 @@ export class GroupPanelComponent {
|
|
|
175
175
|
});
|
|
176
176
|
}
|
|
177
177
|
handleKeyDown = (e) => {
|
|
178
|
-
const code =
|
|
178
|
+
const code = normalizeKeys(e);
|
|
179
179
|
if (code === Keys.ArrowDown || code === Keys.ArrowUp) {
|
|
180
180
|
e.preventDefault();
|
|
181
181
|
const relatedItemType = e.target.matches(':first-child') ? 'next' : 'previous';
|
|
@@ -11,7 +11,7 @@ import { GridFocusableElement } from './grid-focusable-element';
|
|
|
11
11
|
import { NavigationCursor } from './navigation-cursor';
|
|
12
12
|
import { NavigationModel } from './navigation-model';
|
|
13
13
|
import { DomEventsService } from '../common/dom-events.service';
|
|
14
|
-
import { hasClasses, isDocumentAvailable, isPresent, Keys,
|
|
14
|
+
import { hasClasses, isDocumentAvailable, isPresent, Keys, normalizeKeys } from '@progress/kendo-angular-common';
|
|
15
15
|
import { EditService } from '../editing/edit.service';
|
|
16
16
|
import { GroupsService } from '../grouping/groups.service';
|
|
17
17
|
import { PagerContextService } from '@progress/kendo-angular-pager';
|
|
@@ -510,7 +510,7 @@ export class NavigationService {
|
|
|
510
510
|
}
|
|
511
511
|
const row = this.cursor.row;
|
|
512
512
|
// on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
|
|
513
|
-
const code =
|
|
513
|
+
const code = normalizeKeys(args);
|
|
514
514
|
// Handle row reordering keyboard shortcuts (Ctrl/Cmd + Shift + Up/Down Arrow)
|
|
515
515
|
if (modifier && args.shiftKey && (code === Keys.ArrowUp || code === Keys.ArrowDown)) {
|
|
516
516
|
if (this.handleRowReorderKeyboard(args, code, row)) {
|
|
@@ -704,7 +704,7 @@ export class NavigationService {
|
|
|
704
704
|
return;
|
|
705
705
|
}
|
|
706
706
|
// on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
|
|
707
|
-
const code =
|
|
707
|
+
const code = normalizeKeys(args);
|
|
708
708
|
const confirm = !args.defaultPrevented && code === Keys.Enter && isTextInput(args.target);
|
|
709
709
|
if (code === Keys.Escape || code === Keys.F2 || confirm) {
|
|
710
710
|
if (this.tableCellEntered && code === Keys.F2 && this.activeRow.dataRowIndex > -1) {
|
|
@@ -728,7 +728,7 @@ export class NavigationService {
|
|
|
728
728
|
onCellKeydown(args) {
|
|
729
729
|
if (this.editService.isEditingCell()) {
|
|
730
730
|
// on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
|
|
731
|
-
const code =
|
|
731
|
+
const code = normalizeKeys(args);
|
|
732
732
|
const confirm = code === Keys.Enter;
|
|
733
733
|
const cancel = code === Keys.Escape;
|
|
734
734
|
const navigate = isNavigationKey(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
|
|
13
|
+
publishDate: 1764751621,
|
|
14
|
+
version: '21.2.0',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -16,7 +16,7 @@ import { columnsToRender, sortColumns, isInSpanColumn } from "../../columns/colu
|
|
|
16
16
|
import { SinglePopupService } from '../../common/single-popup.service';
|
|
17
17
|
import { hasFilterMenu, hasFilterRow } from '../../filtering/filterable';
|
|
18
18
|
import { IdService } from '../../common/id.service';
|
|
19
|
-
import { DraggableDirective, isDocumentAvailable, Keys,
|
|
19
|
+
import { DraggableDirective, isDocumentAvailable, Keys, normalizeKeys, TemplateContextDirective } from '@progress/kendo-angular-common';
|
|
20
20
|
import { DropTargetDirective } from '../../dragdrop/drop-target.directive';
|
|
21
21
|
import { DraggableColumnDirective } from '../../dragdrop/draggable-column.directive';
|
|
22
22
|
import { DragHintService } from '../../dragdrop/drag-hint.service';
|
|
@@ -168,7 +168,7 @@ export class HeaderComponent {
|
|
|
168
168
|
this.sortColumn(toggledColumn);
|
|
169
169
|
}
|
|
170
170
|
onHeaderKeydown(column, args) {
|
|
171
|
-
const code =
|
|
171
|
+
const code = normalizeKeys(args);
|
|
172
172
|
if (code === Keys.ArrowDown && args.altKey && this.showFilterMenu && this.isFilterable(column)) {
|
|
173
173
|
args.preventDefault();
|
|
174
174
|
args.stopImmediatePropagation();
|
|
@@ -21,7 +21,7 @@ import { GroupsService } from "../grouping/groups.service";
|
|
|
21
21
|
import { expandColumns, sumColumnWidths } from "../columns/column-common";
|
|
22
22
|
import { ScrollSyncService } from "../scrolling/scroll-sync.service";
|
|
23
23
|
import { ResizeService } from "../layout/resize.service";
|
|
24
|
-
import { EventsOutsideAngularDirective, isDocumentAvailable,
|
|
24
|
+
import { EventsOutsideAngularDirective, isDocumentAvailable, normalizeKeys, ResizeSensorComponent } from "@progress/kendo-angular-common";
|
|
25
25
|
import { BrowserSupportService } from "../layout/browser-support.service";
|
|
26
26
|
import { EditService } from '../editing/edit.service';
|
|
27
27
|
import { NavigationService } from '../navigation/navigation.service';
|
|
@@ -463,7 +463,7 @@ export class ListComponent {
|
|
|
463
463
|
}
|
|
464
464
|
lockedKeydown(args) {
|
|
465
465
|
// on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
|
|
466
|
-
const code =
|
|
466
|
+
const code = normalizeKeys(args);
|
|
467
467
|
if (code === Keys.PageDown || code === Keys.PageUp) {
|
|
468
468
|
const dir = code === Keys.PageDown ? 1 : -1;
|
|
469
469
|
const element = this.container.nativeElement;
|
|
@@ -7,7 +7,7 @@ import { IconWrapperComponent } from '@progress/kendo-angular-icons';
|
|
|
7
7
|
import { chevronUpIcon, chevronDownIcon, xCircleIcon, plusCircleIcon, xIcon } from '@progress/kendo-svg-icons';
|
|
8
8
|
import { KENDO_BUTTON } from '@progress/kendo-angular-buttons';
|
|
9
9
|
import { take } from 'rxjs/operators';
|
|
10
|
-
import { isPresent, Keys,
|
|
10
|
+
import { isPresent, Keys, normalizeKeys } from '@progress/kendo-angular-common';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
import * as i1 from "@progress/kendo-angular-buttons";
|
|
13
13
|
/**
|
|
@@ -171,7 +171,7 @@ export class GroupToolbarToolComponent {
|
|
|
171
171
|
this.currentFocusedItemIndex = currentIndex;
|
|
172
172
|
}
|
|
173
173
|
handleGroupedKeydown(column, index, ev) {
|
|
174
|
-
const code =
|
|
174
|
+
const code = normalizeKeys(ev);
|
|
175
175
|
if (code === Keys.Enter || code === Keys.Backspace || code === Keys.Delete) {
|
|
176
176
|
this.removeGroup(column, ev);
|
|
177
177
|
}
|
|
@@ -189,7 +189,7 @@ export class GroupToolbarToolComponent {
|
|
|
189
189
|
}
|
|
190
190
|
}
|
|
191
191
|
handleUngroupedKeydown(column, index, ev) {
|
|
192
|
-
const code =
|
|
192
|
+
const code = normalizeKeys(ev);
|
|
193
193
|
if (code === Keys.Enter) {
|
|
194
194
|
this.addGroup(column, ev);
|
|
195
195
|
}
|
|
@@ -6,7 +6,7 @@ import * as i0 from '@angular/core';
|
|
|
6
6
|
import { EventEmitter, Injectable, SecurityContext, InjectionToken, Optional, Inject, Directive, SkipSelf, Input, isDevMode, QueryList, Component, ContentChildren, ContentChild, forwardRef, Host, Output, HostBinding, Pipe, TemplateRef, ChangeDetectionStrategy, ViewChildren, ViewChild, Self, NgZone, HostListener, ElementRef, ViewContainerRef, ViewEncapsulation, inject, Injector, NgModule } from '@angular/core';
|
|
7
7
|
import { merge, of, Subject, zip as zip$1, from, Subscription, interval, fromEvent, Observable, BehaviorSubject } from 'rxjs';
|
|
8
8
|
import * as i1$3 from '@progress/kendo-angular-common';
|
|
9
|
-
import { isDocumentAvailable, Keys, hasClasses as hasClasses$1, isPresent as isPresent$1,
|
|
9
|
+
import { isDocumentAvailable, Keys, hasClasses as hasClasses$1, isPresent as isPresent$1, normalizeKeys, anyChanged, TemplateContextDirective, DraggableDirective, EventsOutsideAngularDirective, replaceMessagePlaceholder, isChanged as isChanged$1, KendoInput, guid, areObjectsEqual, PrefixTemplateDirective, closest as closest$1, hasObservers, ResizeSensorComponent, isFirefox, firefoxMaxHeight, closestInScope as closestInScope$1, isFocusable as isFocusable$1, getLicenseMessage, shouldShowValidationUI, WatermarkOverlayComponent, PreventableEvent as PreventableEvent$1, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
10
10
|
import * as i1 from '@angular/platform-browser';
|
|
11
11
|
import * as i1$1 from '@progress/kendo-angular-icons';
|
|
12
12
|
import { IconWrapperComponent, IconsService, KENDO_ICONS } from '@progress/kendo-angular-icons';
|
|
@@ -3934,7 +3934,7 @@ class NavigationService {
|
|
|
3934
3934
|
}
|
|
3935
3935
|
const row = this.cursor.row;
|
|
3936
3936
|
// on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
|
|
3937
|
-
const code =
|
|
3937
|
+
const code = normalizeKeys(args);
|
|
3938
3938
|
// Handle row reordering keyboard shortcuts (Ctrl/Cmd + Shift + Up/Down Arrow)
|
|
3939
3939
|
if (modifier && args.shiftKey && (code === Keys.ArrowUp || code === Keys.ArrowDown)) {
|
|
3940
3940
|
if (this.handleRowReorderKeyboard(args, code, row)) {
|
|
@@ -4128,7 +4128,7 @@ class NavigationService {
|
|
|
4128
4128
|
return;
|
|
4129
4129
|
}
|
|
4130
4130
|
// on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
|
|
4131
|
-
const code =
|
|
4131
|
+
const code = normalizeKeys(args);
|
|
4132
4132
|
const confirm = !args.defaultPrevented && code === Keys.Enter && isTextInput(args.target);
|
|
4133
4133
|
if (code === Keys.Escape || code === Keys.F2 || confirm) {
|
|
4134
4134
|
if (this.tableCellEntered && code === Keys.F2 && this.activeRow.dataRowIndex > -1) {
|
|
@@ -4152,7 +4152,7 @@ class NavigationService {
|
|
|
4152
4152
|
onCellKeydown(args) {
|
|
4153
4153
|
if (this.editService.isEditingCell()) {
|
|
4154
4154
|
// on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
|
|
4155
|
-
const code =
|
|
4155
|
+
const code = normalizeKeys(args);
|
|
4156
4156
|
const confirm = code === Keys.Enter;
|
|
4157
4157
|
const cancel = code === Keys.Escape;
|
|
4158
4158
|
const navigate = isNavigationKey(code);
|
|
@@ -6314,7 +6314,7 @@ class GroupPanelComponent {
|
|
|
6314
6314
|
});
|
|
6315
6315
|
}
|
|
6316
6316
|
handleKeyDown = (e) => {
|
|
6317
|
-
const code =
|
|
6317
|
+
const code = normalizeKeys(e);
|
|
6318
6318
|
if (code === Keys.ArrowDown || code === Keys.ArrowUp) {
|
|
6319
6319
|
e.preventDefault();
|
|
6320
6320
|
const relatedItemType = e.target.matches(':first-child') ? 'next' : 'previous';
|
|
@@ -12975,7 +12975,7 @@ class ColumnListComponent {
|
|
|
12975
12975
|
}
|
|
12976
12976
|
}
|
|
12977
12977
|
onKeydown = (e) => {
|
|
12978
|
-
const code =
|
|
12978
|
+
const code = normalizeKeys(e);
|
|
12979
12979
|
if (code !== Keys.Tab) {
|
|
12980
12980
|
e.preventDefault();
|
|
12981
12981
|
}
|
|
@@ -19403,7 +19403,7 @@ class HeaderComponent {
|
|
|
19403
19403
|
this.sortColumn(toggledColumn);
|
|
19404
19404
|
}
|
|
19405
19405
|
onHeaderKeydown(column, args) {
|
|
19406
|
-
const code =
|
|
19406
|
+
const code = normalizeKeys(args);
|
|
19407
19407
|
if (code === Keys.ArrowDown && args.altKey && this.showFilterMenu && this.isFilterable(column)) {
|
|
19408
19408
|
args.preventDefault();
|
|
19409
19409
|
args.stopImmediatePropagation();
|
|
@@ -23575,8 +23575,8 @@ const packageMetadata = {
|
|
|
23575
23575
|
productName: 'Kendo UI for Angular',
|
|
23576
23576
|
productCode: 'KENDOUIANGULAR',
|
|
23577
23577
|
productCodes: ['KENDOUIANGULAR'],
|
|
23578
|
-
publishDate:
|
|
23579
|
-
version: '21.2.0
|
|
23578
|
+
publishDate: 1764751621,
|
|
23579
|
+
version: '21.2.0',
|
|
23580
23580
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
23581
23581
|
};
|
|
23582
23582
|
|
|
@@ -26364,7 +26364,7 @@ class ListComponent {
|
|
|
26364
26364
|
}
|
|
26365
26365
|
lockedKeydown(args) {
|
|
26366
26366
|
// on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
|
|
26367
|
-
const code =
|
|
26367
|
+
const code = normalizeKeys(args);
|
|
26368
26368
|
if (code === Keys.PageDown || code === Keys.PageUp) {
|
|
26369
26369
|
const dir = code === Keys.PageDown ? 1 : -1;
|
|
26370
26370
|
const element = this.container.nativeElement;
|
|
@@ -29141,7 +29141,7 @@ class GroupToolbarToolComponent {
|
|
|
29141
29141
|
this.currentFocusedItemIndex = currentIndex;
|
|
29142
29142
|
}
|
|
29143
29143
|
handleGroupedKeydown(column, index, ev) {
|
|
29144
|
-
const code =
|
|
29144
|
+
const code = normalizeKeys(ev);
|
|
29145
29145
|
if (code === Keys.Enter || code === Keys.Backspace || code === Keys.Delete) {
|
|
29146
29146
|
this.removeGroup(column, ev);
|
|
29147
29147
|
}
|
|
@@ -29159,7 +29159,7 @@ class GroupToolbarToolComponent {
|
|
|
29159
29159
|
}
|
|
29160
29160
|
}
|
|
29161
29161
|
handleUngroupedKeydown(column, index, ev) {
|
|
29162
|
-
const code =
|
|
29162
|
+
const code = normalizeKeys(ev);
|
|
29163
29163
|
if (code === Keys.Enter) {
|
|
29164
29164
|
this.addGroup(column, ev);
|
|
29165
29165
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "21.2.0
|
|
3
|
+
"version": "21.2.0",
|
|
4
4
|
"description": "Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"package": {
|
|
74
74
|
"productName": "Kendo UI for Angular",
|
|
75
75
|
"productCode": "KENDOUIANGULAR",
|
|
76
|
-
"publishDate":
|
|
76
|
+
"publishDate": 1764751621,
|
|
77
77
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
78
78
|
}
|
|
79
79
|
},
|
|
@@ -86,32 +86,32 @@
|
|
|
86
86
|
"@progress/kendo-data-query": "^1.0.0",
|
|
87
87
|
"@progress/kendo-drawing": "^1.21.0",
|
|
88
88
|
"@progress/kendo-licensing": "^1.7.0",
|
|
89
|
-
"@progress/kendo-angular-buttons": "21.2.0
|
|
90
|
-
"@progress/kendo-angular-common": "21.2.0
|
|
91
|
-
"@progress/kendo-angular-dateinputs": "21.2.0
|
|
92
|
-
"@progress/kendo-angular-layout": "21.2.0
|
|
93
|
-
"@progress/kendo-angular-navigation": "21.2.0
|
|
94
|
-
"@progress/kendo-angular-dropdowns": "21.2.0
|
|
95
|
-
"@progress/kendo-angular-excel-export": "21.2.0
|
|
96
|
-
"@progress/kendo-angular-icons": "21.2.0
|
|
97
|
-
"@progress/kendo-angular-indicators": "21.2.0
|
|
98
|
-
"@progress/kendo-angular-inputs": "21.2.0
|
|
99
|
-
"@progress/kendo-angular-conversational-ui": "21.2.0
|
|
100
|
-
"@progress/kendo-angular-intl": "21.2.0
|
|
101
|
-
"@progress/kendo-angular-l10n": "21.2.0
|
|
102
|
-
"@progress/kendo-angular-label": "21.2.0
|
|
103
|
-
"@progress/kendo-angular-menu": "21.2.0
|
|
104
|
-
"@progress/kendo-angular-pager": "21.2.0
|
|
105
|
-
"@progress/kendo-angular-pdf-export": "21.2.0
|
|
106
|
-
"@progress/kendo-angular-popup": "21.2.0
|
|
107
|
-
"@progress/kendo-angular-toolbar": "21.2.0
|
|
108
|
-
"@progress/kendo-angular-upload": "21.2.0
|
|
109
|
-
"@progress/kendo-angular-utils": "21.2.0
|
|
89
|
+
"@progress/kendo-angular-buttons": "21.2.0",
|
|
90
|
+
"@progress/kendo-angular-common": "21.2.0",
|
|
91
|
+
"@progress/kendo-angular-dateinputs": "21.2.0",
|
|
92
|
+
"@progress/kendo-angular-layout": "21.2.0",
|
|
93
|
+
"@progress/kendo-angular-navigation": "21.2.0",
|
|
94
|
+
"@progress/kendo-angular-dropdowns": "21.2.0",
|
|
95
|
+
"@progress/kendo-angular-excel-export": "21.2.0",
|
|
96
|
+
"@progress/kendo-angular-icons": "21.2.0",
|
|
97
|
+
"@progress/kendo-angular-indicators": "21.2.0",
|
|
98
|
+
"@progress/kendo-angular-inputs": "21.2.0",
|
|
99
|
+
"@progress/kendo-angular-conversational-ui": "21.2.0",
|
|
100
|
+
"@progress/kendo-angular-intl": "21.2.0",
|
|
101
|
+
"@progress/kendo-angular-l10n": "21.2.0",
|
|
102
|
+
"@progress/kendo-angular-label": "21.2.0",
|
|
103
|
+
"@progress/kendo-angular-menu": "21.2.0",
|
|
104
|
+
"@progress/kendo-angular-pager": "21.2.0",
|
|
105
|
+
"@progress/kendo-angular-pdf-export": "21.2.0",
|
|
106
|
+
"@progress/kendo-angular-popup": "21.2.0",
|
|
107
|
+
"@progress/kendo-angular-toolbar": "21.2.0",
|
|
108
|
+
"@progress/kendo-angular-upload": "21.2.0",
|
|
109
|
+
"@progress/kendo-angular-utils": "21.2.0",
|
|
110
110
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
111
111
|
},
|
|
112
112
|
"dependencies": {
|
|
113
113
|
"tslib": "^2.3.1",
|
|
114
|
-
"@progress/kendo-angular-schematics": "21.2.0
|
|
114
|
+
"@progress/kendo-angular-schematics": "21.2.0",
|
|
115
115
|
"@progress/kendo-common": "^1.0.1",
|
|
116
116
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
117
117
|
},
|
|
@@ -9,19 +9,19 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
9
9
|
function default_1(options) {
|
|
10
10
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'GridModule', package: 'grid', peerDependencies: {
|
|
11
11
|
// peer deps of the dropdowns
|
|
12
|
-
'@progress/kendo-angular-treeview': '21.2.0
|
|
13
|
-
'@progress/kendo-angular-navigation': '21.2.0
|
|
12
|
+
'@progress/kendo-angular-treeview': '21.2.0',
|
|
13
|
+
'@progress/kendo-angular-navigation': '21.2.0',
|
|
14
14
|
// peer dependency of kendo-angular-inputs
|
|
15
|
-
'@progress/kendo-angular-dialog': '21.2.0
|
|
15
|
+
'@progress/kendo-angular-dialog': '21.2.0',
|
|
16
16
|
// peer dependency of kendo-angular-icons
|
|
17
17
|
'@progress/kendo-svg-icons': '^4.0.0',
|
|
18
18
|
// peer dependency of kendo-angular-layout
|
|
19
|
-
'@progress/kendo-angular-progressbar': '21.2.0
|
|
19
|
+
'@progress/kendo-angular-progressbar': '21.2.0',
|
|
20
20
|
// transitive peer dependencies from toolbar
|
|
21
|
-
'@progress/kendo-angular-indicators': '21.2.0
|
|
21
|
+
'@progress/kendo-angular-indicators': '21.2.0',
|
|
22
22
|
// transitive peer dependencies from conversational-ui
|
|
23
|
-
'@progress/kendo-angular-menu': '21.2.0
|
|
24
|
-
'@progress/kendo-angular-upload': '21.2.0
|
|
23
|
+
'@progress/kendo-angular-menu': '21.2.0',
|
|
24
|
+
'@progress/kendo-angular-upload': '21.2.0'
|
|
25
25
|
} });
|
|
26
26
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
27
27
|
}
|