@progress/kendo-angular-grid 21.3.0-develop.1 → 21.3.0-develop.3
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/column-menu/column-list.component.d.ts +1 -0
- package/esm2022/column-menu/column-list.component.mjs +2 -1
- package/esm2022/column-menu/column-menu-chooser.component.mjs +1 -2
- package/esm2022/column-menu/column-menu.component.mjs +4 -6
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-grid.mjs +9 -9
- package/package.json +25 -25
- package/schematics/ngAdd/index.js +7 -7
|
@@ -54,6 +54,7 @@ export declare class ColumnListComponent implements OnInit, OnDestroy {
|
|
|
54
54
|
private _columns;
|
|
55
55
|
private domSubscriptions;
|
|
56
56
|
private lastDisabledCheckbox;
|
|
57
|
+
private handledKeys;
|
|
57
58
|
constructor(element: ElementRef, ngZone: NgZone, renderer: Renderer2, listNavigationService: ColumnListKeyboardNavigation, cdr: ChangeDetectorRef, columnInfoService: ColumnInfoService, adaptiveGridService: AdaptiveGridService, ctx: ContextService);
|
|
58
59
|
ngOnInit(): void;
|
|
59
60
|
ngAfterViewInit(): void;
|
|
@@ -86,6 +86,7 @@ export class ColumnListComponent {
|
|
|
86
86
|
_columns;
|
|
87
87
|
domSubscriptions = new Subscription();
|
|
88
88
|
lastDisabledCheckbox;
|
|
89
|
+
handledKeys = [Keys.ArrowDown, Keys.ArrowUp, Keys.Space];
|
|
89
90
|
constructor(element, ngZone, renderer, listNavigationService, cdr, columnInfoService, adaptiveGridService, ctx) {
|
|
90
91
|
this.element = element;
|
|
91
92
|
this.ngZone = ngZone;
|
|
@@ -228,7 +229,7 @@ export class ColumnListComponent {
|
|
|
228
229
|
}
|
|
229
230
|
onKeydown = (e) => {
|
|
230
231
|
const code = normalizeKeys(e);
|
|
231
|
-
if (code
|
|
232
|
+
if (this.handledKeys.includes(code)) {
|
|
232
233
|
e.preventDefault();
|
|
233
234
|
}
|
|
234
235
|
if (code === 'Tab' && e.shiftKey) {
|
|
@@ -7,7 +7,6 @@ import { ColumnInfoService } from '../common/column-info.service';
|
|
|
7
7
|
import { ColumnMenuItemBase } from './column-menu-item-base';
|
|
8
8
|
import { columnsIcon } from '@progress/kendo-svg-icons';
|
|
9
9
|
import { ContextService } from '../common/provider.service';
|
|
10
|
-
import { ColumnListComponent } from './column-list.component';
|
|
11
10
|
import { ColumnMenuItemContentTemplateDirective } from './column-menu-item-content-template.directive';
|
|
12
11
|
import { ColumnMenuItemComponent } from './column-menu-item.component';
|
|
13
12
|
import { ColumnChooserContentComponent } from './column-chooser-content.component';
|
|
@@ -139,7 +138,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
139
138
|
</kendo-grid-columnmenu-item>
|
|
140
139
|
`,
|
|
141
140
|
standalone: true,
|
|
142
|
-
imports: [ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective,
|
|
141
|
+
imports: [ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnChooserContentComponent]
|
|
143
142
|
}]
|
|
144
143
|
}], ctorParameters: () => [{ type: i1.ContextService }, { type: i2.ColumnInfoService }, { type: i0.ElementRef }], propDecorators: { expand: [{
|
|
145
144
|
type: Output
|
|
@@ -15,7 +15,6 @@ import { moreVerticalIcon, columnsIcon, filterIcon, slidersIcon } from '@progres
|
|
|
15
15
|
import { TabContentDirective, TabStripComponent, TabStripTabComponent, TabTitleDirective } from '@progress/kendo-angular-layout';
|
|
16
16
|
import { ColumnInfoService } from '../common/column-info.service';
|
|
17
17
|
import { IdService } from '../common/id.service';
|
|
18
|
-
import { ColumnListComponent } from './column-list.component';
|
|
19
18
|
import { FilterMenuContainerComponent } from '../filtering/menu/filter-menu-container.component';
|
|
20
19
|
import { ColumnMenuFilterComponent } from './column-menu-filter.component';
|
|
21
20
|
import { ColumnMenuAutoSizeAllColumnsComponent } from './column-menu-autosize-all.component';
|
|
@@ -437,7 +436,7 @@ export class ColumnMenuComponent {
|
|
|
437
436
|
>
|
|
438
437
|
</kendo-grid-columnmenu-autosize-column>
|
|
439
438
|
}
|
|
440
|
-
|
|
439
|
+
|
|
441
440
|
@if (hasAutoSizeAllColumns) {
|
|
442
441
|
<kendo-grid-columnmenu-autosize-all-columns
|
|
443
442
|
#autoSizeAllColumnsItem
|
|
@@ -565,7 +564,7 @@ export class ColumnMenuComponent {
|
|
|
565
564
|
}
|
|
566
565
|
</kendo-tabstrip>
|
|
567
566
|
</ng-template>
|
|
568
|
-
|
|
567
|
+
|
|
569
568
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: ColumnMenuContainerComponent, selector: "kendo-grid-columnmenu-container" }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: ColumnMenuSortComponent, selector: "kendo-grid-columnmenu-sort" }, { kind: "directive", type: ColumnMenuItemDirective, selector: "[kendoGridColumnMenuItem]", inputs: ["kendoGridColumnMenuItem"] }, { kind: "component", type: ColumnMenuLockComponent, selector: "kendo-grid-columnmenu-lock" }, { kind: "component", type: ColumnMenuStickComponent, selector: "kendo-grid-columnmenu-stick" }, { kind: "component", type: ColumnMenuPositionComponent, selector: "kendo-grid-columnmenu-position", inputs: ["expanded", "showLock", "showStick", "isLast"], outputs: ["expand", "collapse"] }, { kind: "component", type: ColumnMenuChooserComponent, selector: "kendo-grid-columnmenu-chooser", inputs: ["expanded", "isLast"], outputs: ["expand", "collapse"] }, { kind: "component", type: ColumnMenuAutoSizeColumnComponent, selector: "kendo-grid-columnmenu-autosize-column", inputs: ["column"] }, { kind: "component", type: ColumnMenuAutoSizeAllColumnsComponent, selector: "kendo-grid-columnmenu-autosize-all-columns" }, { kind: "component", type: ColumnMenuFilterComponent, selector: "kendo-grid-columnmenu-filter", inputs: ["expanded", "isLast"], outputs: ["expand", "collapse"] }, { kind: "component", type: TabStripComponent, selector: "kendo-tabstrip", inputs: ["height", "animate", "tabAlignment", "tabPosition", "keepTabContent", "closable", "scrollable", "size", "closeIcon", "closeIconClass", "closeSVGIcon", "showContentArea"], outputs: ["tabSelect", "tabClose", "tabScroll"], exportAs: ["kendoTabStrip"] }, { kind: "component", type: TabStripTabComponent, selector: "kendo-tabstrip-tab", inputs: ["title", "disabled", "cssClass", "cssStyle", "selected", "closable", "closeIcon", "closeIconClass", "closeSVGIcon"], exportAs: ["kendoTabStripTab"] }, { kind: "directive", type: TabTitleDirective, selector: "[kendoTabTitle]" }, { kind: "directive", type: TabContentDirective, selector: "[kendoTabContent]" }, { kind: "component", type: FilterMenuContainerComponent, selector: "kendo-grid-filter-menu-container", inputs: ["column", "isLast", "isExpanded", "menuTabbingService", "filter", "actionsClass"], outputs: ["close"] }, { kind: "component", type: ColumnChooserContentComponent, selector: "kendo-grid-column-chooser-content", inputs: ["filterable", "showSelectAll", "showCheckedCount", "allowHideAll", "autoSync", "actionsClass", "closeOnReset", "columns", "isLast", "isExpanded", "service"], outputs: ["close"] }] });
|
|
570
569
|
}
|
|
571
570
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ColumnMenuComponent, decorators: [{
|
|
@@ -648,7 +647,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
648
647
|
>
|
|
649
648
|
</kendo-grid-columnmenu-autosize-column>
|
|
650
649
|
}
|
|
651
|
-
|
|
650
|
+
|
|
652
651
|
@if (hasAutoSizeAllColumns) {
|
|
653
652
|
<kendo-grid-columnmenu-autosize-all-columns
|
|
654
653
|
#autoSizeAllColumnsItem
|
|
@@ -776,7 +775,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
776
775
|
}
|
|
777
776
|
</kendo-tabstrip>
|
|
778
777
|
</ng-template>
|
|
779
|
-
|
|
778
|
+
|
|
780
779
|
`,
|
|
781
780
|
standalone: true,
|
|
782
781
|
imports: [
|
|
@@ -798,7 +797,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
798
797
|
TabTitleDirective,
|
|
799
798
|
TabContentDirective,
|
|
800
799
|
FilterMenuContainerComponent,
|
|
801
|
-
ColumnListComponent,
|
|
802
800
|
ColumnChooserContentComponent
|
|
803
801
|
]
|
|
804
802
|
}]
|
|
@@ -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.3.0-develop.
|
|
13
|
+
publishDate: 1764930981,
|
|
14
|
+
version: '21.3.0-develop.3',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -12837,6 +12837,7 @@ class ColumnListComponent {
|
|
|
12837
12837
|
_columns;
|
|
12838
12838
|
domSubscriptions = new Subscription();
|
|
12839
12839
|
lastDisabledCheckbox;
|
|
12840
|
+
handledKeys = [Keys.ArrowDown, Keys.ArrowUp, Keys.Space];
|
|
12840
12841
|
constructor(element, ngZone, renderer, listNavigationService, cdr, columnInfoService, adaptiveGridService, ctx) {
|
|
12841
12842
|
this.element = element;
|
|
12842
12843
|
this.ngZone = ngZone;
|
|
@@ -12979,7 +12980,7 @@ class ColumnListComponent {
|
|
|
12979
12980
|
}
|
|
12980
12981
|
onKeydown = (e) => {
|
|
12981
12982
|
const code = normalizeKeys(e);
|
|
12982
|
-
if (code
|
|
12983
|
+
if (this.handledKeys.includes(code)) {
|
|
12983
12984
|
e.preventDefault();
|
|
12984
12985
|
}
|
|
12985
12986
|
if (code === 'Tab' && e.shiftKey) {
|
|
@@ -14960,7 +14961,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
14960
14961
|
</kendo-grid-columnmenu-item>
|
|
14961
14962
|
`,
|
|
14962
14963
|
standalone: true,
|
|
14963
|
-
imports: [ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective,
|
|
14964
|
+
imports: [ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnChooserContentComponent]
|
|
14964
14965
|
}]
|
|
14965
14966
|
}], ctorParameters: () => [{ type: ContextService }, { type: ColumnInfoService }, { type: i0.ElementRef }], propDecorators: { expand: [{
|
|
14966
14967
|
type: Output
|
|
@@ -16233,7 +16234,7 @@ class ColumnMenuComponent {
|
|
|
16233
16234
|
>
|
|
16234
16235
|
</kendo-grid-columnmenu-autosize-column>
|
|
16235
16236
|
}
|
|
16236
|
-
|
|
16237
|
+
|
|
16237
16238
|
@if (hasAutoSizeAllColumns) {
|
|
16238
16239
|
<kendo-grid-columnmenu-autosize-all-columns
|
|
16239
16240
|
#autoSizeAllColumnsItem
|
|
@@ -16361,7 +16362,7 @@ class ColumnMenuComponent {
|
|
|
16361
16362
|
}
|
|
16362
16363
|
</kendo-tabstrip>
|
|
16363
16364
|
</ng-template>
|
|
16364
|
-
|
|
16365
|
+
|
|
16365
16366
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: ColumnMenuContainerComponent, selector: "kendo-grid-columnmenu-container" }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: ColumnMenuSortComponent, selector: "kendo-grid-columnmenu-sort" }, { kind: "directive", type: ColumnMenuItemDirective, selector: "[kendoGridColumnMenuItem]", inputs: ["kendoGridColumnMenuItem"] }, { kind: "component", type: ColumnMenuLockComponent, selector: "kendo-grid-columnmenu-lock" }, { kind: "component", type: ColumnMenuStickComponent, selector: "kendo-grid-columnmenu-stick" }, { kind: "component", type: ColumnMenuPositionComponent, selector: "kendo-grid-columnmenu-position", inputs: ["expanded", "showLock", "showStick", "isLast"], outputs: ["expand", "collapse"] }, { kind: "component", type: ColumnMenuChooserComponent, selector: "kendo-grid-columnmenu-chooser", inputs: ["expanded", "isLast"], outputs: ["expand", "collapse"] }, { kind: "component", type: ColumnMenuAutoSizeColumnComponent, selector: "kendo-grid-columnmenu-autosize-column", inputs: ["column"] }, { kind: "component", type: ColumnMenuAutoSizeAllColumnsComponent, selector: "kendo-grid-columnmenu-autosize-all-columns" }, { kind: "component", type: ColumnMenuFilterComponent, selector: "kendo-grid-columnmenu-filter", inputs: ["expanded", "isLast"], outputs: ["expand", "collapse"] }, { kind: "component", type: TabStripComponent, selector: "kendo-tabstrip", inputs: ["height", "animate", "tabAlignment", "tabPosition", "keepTabContent", "closable", "scrollable", "size", "closeIcon", "closeIconClass", "closeSVGIcon", "showContentArea"], outputs: ["tabSelect", "tabClose", "tabScroll"], exportAs: ["kendoTabStrip"] }, { kind: "component", type: TabStripTabComponent, selector: "kendo-tabstrip-tab", inputs: ["title", "disabled", "cssClass", "cssStyle", "selected", "closable", "closeIcon", "closeIconClass", "closeSVGIcon"], exportAs: ["kendoTabStripTab"] }, { kind: "directive", type: TabTitleDirective, selector: "[kendoTabTitle]" }, { kind: "directive", type: TabContentDirective, selector: "[kendoTabContent]" }, { kind: "component", type: FilterMenuContainerComponent, selector: "kendo-grid-filter-menu-container", inputs: ["column", "isLast", "isExpanded", "menuTabbingService", "filter", "actionsClass"], outputs: ["close"] }, { kind: "component", type: ColumnChooserContentComponent, selector: "kendo-grid-column-chooser-content", inputs: ["filterable", "showSelectAll", "showCheckedCount", "allowHideAll", "autoSync", "actionsClass", "closeOnReset", "columns", "isLast", "isExpanded", "service"], outputs: ["close"] }] });
|
|
16366
16367
|
}
|
|
16367
16368
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ColumnMenuComponent, decorators: [{
|
|
@@ -16444,7 +16445,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
16444
16445
|
>
|
|
16445
16446
|
</kendo-grid-columnmenu-autosize-column>
|
|
16446
16447
|
}
|
|
16447
|
-
|
|
16448
|
+
|
|
16448
16449
|
@if (hasAutoSizeAllColumns) {
|
|
16449
16450
|
<kendo-grid-columnmenu-autosize-all-columns
|
|
16450
16451
|
#autoSizeAllColumnsItem
|
|
@@ -16572,7 +16573,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
16572
16573
|
}
|
|
16573
16574
|
</kendo-tabstrip>
|
|
16574
16575
|
</ng-template>
|
|
16575
|
-
|
|
16576
|
+
|
|
16576
16577
|
`,
|
|
16577
16578
|
standalone: true,
|
|
16578
16579
|
imports: [
|
|
@@ -16594,7 +16595,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
16594
16595
|
TabTitleDirective,
|
|
16595
16596
|
TabContentDirective,
|
|
16596
16597
|
FilterMenuContainerComponent,
|
|
16597
|
-
ColumnListComponent,
|
|
16598
16598
|
ColumnChooserContentComponent
|
|
16599
16599
|
]
|
|
16600
16600
|
}]
|
|
@@ -23578,8 +23578,8 @@ const packageMetadata = {
|
|
|
23578
23578
|
productName: 'Kendo UI for Angular',
|
|
23579
23579
|
productCode: 'KENDOUIANGULAR',
|
|
23580
23580
|
productCodes: ['KENDOUIANGULAR'],
|
|
23581
|
-
publishDate:
|
|
23582
|
-
version: '21.3.0-develop.
|
|
23581
|
+
publishDate: 1764930981,
|
|
23582
|
+
version: '21.3.0-develop.3',
|
|
23583
23583
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
23584
23584
|
};
|
|
23585
23585
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "21.3.0-develop.
|
|
3
|
+
"version": "21.3.0-develop.3",
|
|
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": 1764930981,
|
|
77
77
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
78
78
|
}
|
|
79
79
|
},
|
|
@@ -84,34 +84,34 @@
|
|
|
84
84
|
"@angular/forms": "18 - 21",
|
|
85
85
|
"@angular/platform-browser": "18 - 21",
|
|
86
86
|
"@progress/kendo-data-query": "^1.0.0",
|
|
87
|
-
"@progress/kendo-drawing": "^1.
|
|
87
|
+
"@progress/kendo-drawing": "^1.23.1",
|
|
88
88
|
"@progress/kendo-licensing": "^1.7.0",
|
|
89
|
-
"@progress/kendo-angular-buttons": "21.3.0-develop.
|
|
90
|
-
"@progress/kendo-angular-common": "21.3.0-develop.
|
|
91
|
-
"@progress/kendo-angular-dateinputs": "21.3.0-develop.
|
|
92
|
-
"@progress/kendo-angular-layout": "21.3.0-develop.
|
|
93
|
-
"@progress/kendo-angular-navigation": "21.3.0-develop.
|
|
94
|
-
"@progress/kendo-angular-dropdowns": "21.3.0-develop.
|
|
95
|
-
"@progress/kendo-angular-excel-export": "21.3.0-develop.
|
|
96
|
-
"@progress/kendo-angular-icons": "21.3.0-develop.
|
|
97
|
-
"@progress/kendo-angular-indicators": "21.3.0-develop.
|
|
98
|
-
"@progress/kendo-angular-inputs": "21.3.0-develop.
|
|
99
|
-
"@progress/kendo-angular-conversational-ui": "21.3.0-develop.
|
|
100
|
-
"@progress/kendo-angular-intl": "21.3.0-develop.
|
|
101
|
-
"@progress/kendo-angular-l10n": "21.3.0-develop.
|
|
102
|
-
"@progress/kendo-angular-label": "21.3.0-develop.
|
|
103
|
-
"@progress/kendo-angular-menu": "21.3.0-develop.
|
|
104
|
-
"@progress/kendo-angular-pager": "21.3.0-develop.
|
|
105
|
-
"@progress/kendo-angular-pdf-export": "21.3.0-develop.
|
|
106
|
-
"@progress/kendo-angular-popup": "21.3.0-develop.
|
|
107
|
-
"@progress/kendo-angular-toolbar": "21.3.0-develop.
|
|
108
|
-
"@progress/kendo-angular-upload": "21.3.0-develop.
|
|
109
|
-
"@progress/kendo-angular-utils": "21.3.0-develop.
|
|
89
|
+
"@progress/kendo-angular-buttons": "21.3.0-develop.3",
|
|
90
|
+
"@progress/kendo-angular-common": "21.3.0-develop.3",
|
|
91
|
+
"@progress/kendo-angular-dateinputs": "21.3.0-develop.3",
|
|
92
|
+
"@progress/kendo-angular-layout": "21.3.0-develop.3",
|
|
93
|
+
"@progress/kendo-angular-navigation": "21.3.0-develop.3",
|
|
94
|
+
"@progress/kendo-angular-dropdowns": "21.3.0-develop.3",
|
|
95
|
+
"@progress/kendo-angular-excel-export": "21.3.0-develop.3",
|
|
96
|
+
"@progress/kendo-angular-icons": "21.3.0-develop.3",
|
|
97
|
+
"@progress/kendo-angular-indicators": "21.3.0-develop.3",
|
|
98
|
+
"@progress/kendo-angular-inputs": "21.3.0-develop.3",
|
|
99
|
+
"@progress/kendo-angular-conversational-ui": "21.3.0-develop.3",
|
|
100
|
+
"@progress/kendo-angular-intl": "21.3.0-develop.3",
|
|
101
|
+
"@progress/kendo-angular-l10n": "21.3.0-develop.3",
|
|
102
|
+
"@progress/kendo-angular-label": "21.3.0-develop.3",
|
|
103
|
+
"@progress/kendo-angular-menu": "21.3.0-develop.3",
|
|
104
|
+
"@progress/kendo-angular-pager": "21.3.0-develop.3",
|
|
105
|
+
"@progress/kendo-angular-pdf-export": "21.3.0-develop.3",
|
|
106
|
+
"@progress/kendo-angular-popup": "21.3.0-develop.3",
|
|
107
|
+
"@progress/kendo-angular-toolbar": "21.3.0-develop.3",
|
|
108
|
+
"@progress/kendo-angular-upload": "21.3.0-develop.3",
|
|
109
|
+
"@progress/kendo-angular-utils": "21.3.0-develop.3",
|
|
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.3.0-develop.
|
|
114
|
+
"@progress/kendo-angular-schematics": "21.3.0-develop.3",
|
|
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.3.0-develop.
|
|
13
|
-
'@progress/kendo-angular-navigation': '21.3.0-develop.
|
|
12
|
+
'@progress/kendo-angular-treeview': '21.3.0-develop.3',
|
|
13
|
+
'@progress/kendo-angular-navigation': '21.3.0-develop.3',
|
|
14
14
|
// peer dependency of kendo-angular-inputs
|
|
15
|
-
'@progress/kendo-angular-dialog': '21.3.0-develop.
|
|
15
|
+
'@progress/kendo-angular-dialog': '21.3.0-develop.3',
|
|
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.3.0-develop.
|
|
19
|
+
'@progress/kendo-angular-progressbar': '21.3.0-develop.3',
|
|
20
20
|
// transitive peer dependencies from toolbar
|
|
21
|
-
'@progress/kendo-angular-indicators': '21.3.0-develop.
|
|
21
|
+
'@progress/kendo-angular-indicators': '21.3.0-develop.3',
|
|
22
22
|
// transitive peer dependencies from conversational-ui
|
|
23
|
-
'@progress/kendo-angular-menu': '21.3.0-develop.
|
|
24
|
-
'@progress/kendo-angular-upload': '21.3.0-develop.
|
|
23
|
+
'@progress/kendo-angular-menu': '21.3.0-develop.3',
|
|
24
|
+
'@progress/kendo-angular-upload': '21.3.0-develop.3'
|
|
25
25
|
} });
|
|
26
26
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
27
27
|
}
|