@progress/kendo-angular-grid 14.3.0-develop.1 → 14.3.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.
- package/esm2020/filtering/cell/string-filter-cell.component.mjs +1 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/rendering/table-body.component.mjs +6 -1
- package/esm2020/selection/marquee.directive.mjs +3 -2
- package/fesm2015/progress-kendo-angular-grid.mjs +10 -5
- package/fesm2020/progress-kendo-angular-grid.mjs +10 -5
- package/package.json +16 -16
- package/schematics/ngAdd/index.js +3 -3
|
@@ -82,7 +82,7 @@ StringFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
82
82
|
[filterDelay]="filterDelay"
|
|
83
83
|
[ngModel]="currentFilter?.value"></kendo-textbox>
|
|
84
84
|
</kendo-grid-filter-wrapper-cell>
|
|
85
|
-
`, isInline: true, components: [{ type: i4.FilterCellWrapperComponent, selector: "kendo-grid-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i5.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }], directives: [{ type: i6.FocusableDirective, selector: "[kendoGridFocusable],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridCancelCommand],\n [kendoGridSelectionCheckbox]\n ", inputs: ["kendoGridFocusable"] }, { type: i7.FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "value"] }, { type: i8.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i8.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
|
|
85
|
+
`, isInline: true, components: [{ type: i4.FilterCellWrapperComponent, selector: "kendo-grid-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i5.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }], directives: [{ type: i6.FocusableDirective, selector: "[kendoGridFocusable],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridCancelCommand],\n [kendoGridSelectionCheckbox]\n ", inputs: ["kendoGridFocusable"] }, { type: i7.FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "value"] }, { type: i8.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i8.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
|
|
86
86
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StringFilterCellComponent, decorators: [{
|
|
87
87
|
type: Component,
|
|
88
88
|
args: [{
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-grid',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '14.3.0-develop.
|
|
12
|
+
publishDate: 1702311363,
|
|
13
|
+
version: '14.3.0-develop.11',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -25,6 +25,7 @@ import { CellSelectionService } from '../selection/cell-selection.service';
|
|
|
25
25
|
import { minusIcon, plusIcon } from '@progress/kendo-svg-icons';
|
|
26
26
|
import { ContextService } from '../common/provider.service';
|
|
27
27
|
import { ColumnsContainer } from '../columns/columns-container';
|
|
28
|
+
import { SpanColumnComponent } from '../columns/span-column.component';
|
|
28
29
|
import * as i0 from "@angular/core";
|
|
29
30
|
import * as i1 from "./details/details.service";
|
|
30
31
|
import * as i2 from "../grouping/groups.service";
|
|
@@ -280,7 +281,11 @@ export class TableBodyComponent {
|
|
|
280
281
|
return this.columnsSpan + this.groups.length + (this.hasDetailTemplate ? 1 : 0);
|
|
281
282
|
}
|
|
282
283
|
get footerColumns() {
|
|
283
|
-
|
|
284
|
+
const colsToRender = Array.from(this.columns).reduce((cols, col) => {
|
|
285
|
+
const newCols = (col instanceof SpanColumnComponent) ? Array.from(col.childColumns) : [col];
|
|
286
|
+
return [...cols, ...newCols];
|
|
287
|
+
}, []);
|
|
288
|
+
return colsToRender;
|
|
284
289
|
}
|
|
285
290
|
showGroupHeader(item) {
|
|
286
291
|
return !item.data.skipHeader;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { DomEventsService } from './../common/dom-events.service';
|
|
6
6
|
import { Directive, HostBinding } from '@angular/core';
|
|
7
|
-
import { DraggableDirective, isDocumentAvailable } from '@progress/kendo-angular-common';
|
|
7
|
+
import { DraggableDirective, isDocumentAvailable, isPresent } from '@progress/kendo-angular-common';
|
|
8
8
|
import { SelectionService } from './selection.service';
|
|
9
9
|
import { CellSelectionService } from './cell-selection.service';
|
|
10
10
|
import { take, delay } from 'rxjs/operators';
|
|
@@ -60,7 +60,8 @@ export class GridMarqueeDirective {
|
|
|
60
60
|
}
|
|
61
61
|
start(args) {
|
|
62
62
|
const isInvalidTarget = args.originalEvent.target.matches('.k-grid-content, .k-grid-content-locked, .k-grid-aria-root, .k-checkbox');
|
|
63
|
-
|
|
63
|
+
const isRowReorderColumn = isPresent(args.originalEvent.target.closest('.k-drag-cell'));
|
|
64
|
+
if (isInvalidTarget || isRowReorderColumn) {
|
|
64
65
|
this.pressArgs = null;
|
|
65
66
|
return;
|
|
66
67
|
}
|
|
@@ -4319,7 +4319,8 @@ class GridMarqueeDirective {
|
|
|
4319
4319
|
}
|
|
4320
4320
|
start(args) {
|
|
4321
4321
|
const isInvalidTarget = args.originalEvent.target.matches('.k-grid-content, .k-grid-content-locked, .k-grid-aria-root, .k-checkbox');
|
|
4322
|
-
|
|
4322
|
+
const isRowReorderColumn = isPresent$1(args.originalEvent.target.closest('.k-drag-cell'));
|
|
4323
|
+
if (isInvalidTarget || isRowReorderColumn) {
|
|
4323
4324
|
this.pressArgs = null;
|
|
4324
4325
|
return;
|
|
4325
4326
|
}
|
|
@@ -4474,8 +4475,8 @@ const packageMetadata = {
|
|
|
4474
4475
|
name: '@progress/kendo-angular-grid',
|
|
4475
4476
|
productName: 'Kendo UI for Angular',
|
|
4476
4477
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
4477
|
-
publishDate:
|
|
4478
|
-
version: '14.3.0-develop.
|
|
4478
|
+
publishDate: 1702311363,
|
|
4479
|
+
version: '14.3.0-develop.11',
|
|
4479
4480
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
4480
4481
|
};
|
|
4481
4482
|
|
|
@@ -14260,7 +14261,7 @@ StringFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
14260
14261
|
[filterDelay]="filterDelay"
|
|
14261
14262
|
[ngModel]="currentFilter?.value"></kendo-textbox>
|
|
14262
14263
|
</kendo-grid-filter-wrapper-cell>
|
|
14263
|
-
`, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-grid-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i3$1.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }], directives: [{ type: FocusableDirective, selector: "[kendoGridFocusable],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridCancelCommand],\n [kendoGridSelectionCheckbox]\n ", inputs: ["kendoGridFocusable"] }, { type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "value"] }, { type: i4$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4$2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
|
|
14264
|
+
`, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-grid-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i3$1.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }], directives: [{ type: FocusableDirective, selector: "[kendoGridFocusable],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridCancelCommand],\n [kendoGridSelectionCheckbox]\n ", inputs: ["kendoGridFocusable"] }, { type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "value"] }, { type: i4$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4$2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
|
|
14264
14265
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StringFilterCellComponent, decorators: [{
|
|
14265
14266
|
type: Component,
|
|
14266
14267
|
args: [{
|
|
@@ -17610,7 +17611,11 @@ class TableBodyComponent {
|
|
|
17610
17611
|
return this.columnsSpan + this.groups.length + (this.hasDetailTemplate ? 1 : 0);
|
|
17611
17612
|
}
|
|
17612
17613
|
get footerColumns() {
|
|
17613
|
-
|
|
17614
|
+
const colsToRender = Array.from(this.columns).reduce((cols, col) => {
|
|
17615
|
+
const newCols = (col instanceof SpanColumnComponent) ? Array.from(col.childColumns) : [col];
|
|
17616
|
+
return [...cols, ...newCols];
|
|
17617
|
+
}, []);
|
|
17618
|
+
return colsToRender;
|
|
17614
17619
|
}
|
|
17615
17620
|
showGroupHeader(item) {
|
|
17616
17621
|
return !item.data.skipHeader;
|
|
@@ -4287,7 +4287,8 @@ class GridMarqueeDirective {
|
|
|
4287
4287
|
}
|
|
4288
4288
|
start(args) {
|
|
4289
4289
|
const isInvalidTarget = args.originalEvent.target.matches('.k-grid-content, .k-grid-content-locked, .k-grid-aria-root, .k-checkbox');
|
|
4290
|
-
|
|
4290
|
+
const isRowReorderColumn = isPresent$1(args.originalEvent.target.closest('.k-drag-cell'));
|
|
4291
|
+
if (isInvalidTarget || isRowReorderColumn) {
|
|
4291
4292
|
this.pressArgs = null;
|
|
4292
4293
|
return;
|
|
4293
4294
|
}
|
|
@@ -4442,8 +4443,8 @@ const packageMetadata = {
|
|
|
4442
4443
|
name: '@progress/kendo-angular-grid',
|
|
4443
4444
|
productName: 'Kendo UI for Angular',
|
|
4444
4445
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
4445
|
-
publishDate:
|
|
4446
|
-
version: '14.3.0-develop.
|
|
4446
|
+
publishDate: 1702311363,
|
|
4447
|
+
version: '14.3.0-develop.11',
|
|
4447
4448
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
4448
4449
|
};
|
|
4449
4450
|
|
|
@@ -14188,7 +14189,7 @@ StringFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
14188
14189
|
[filterDelay]="filterDelay"
|
|
14189
14190
|
[ngModel]="currentFilter?.value"></kendo-textbox>
|
|
14190
14191
|
</kendo-grid-filter-wrapper-cell>
|
|
14191
|
-
`, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-grid-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i3$1.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }], directives: [{ type: FocusableDirective, selector: "[kendoGridFocusable],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridCancelCommand],\n [kendoGridSelectionCheckbox]\n ", inputs: ["kendoGridFocusable"] }, { type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "value"] }, { type: i4$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4$2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
|
|
14192
|
+
`, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-grid-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i3$1.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }], directives: [{ type: FocusableDirective, selector: "[kendoGridFocusable],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridCancelCommand],\n [kendoGridSelectionCheckbox]\n ", inputs: ["kendoGridFocusable"] }, { type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "value"] }, { type: i4$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4$2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
|
|
14192
14193
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StringFilterCellComponent, decorators: [{
|
|
14193
14194
|
type: Component,
|
|
14194
14195
|
args: [{
|
|
@@ -17528,7 +17529,11 @@ class TableBodyComponent {
|
|
|
17528
17529
|
return this.columnsSpan + this.groups.length + (this.hasDetailTemplate ? 1 : 0);
|
|
17529
17530
|
}
|
|
17530
17531
|
get footerColumns() {
|
|
17531
|
-
|
|
17532
|
+
const colsToRender = Array.from(this.columns).reduce((cols, col) => {
|
|
17533
|
+
const newCols = (col instanceof SpanColumnComponent) ? Array.from(col.childColumns) : [col];
|
|
17534
|
+
return [...cols, ...newCols];
|
|
17535
|
+
}, []);
|
|
17536
|
+
return colsToRender;
|
|
17532
17537
|
}
|
|
17533
17538
|
showGroupHeader(item) {
|
|
17534
17539
|
return !item.data.skipHeader;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "14.3.0-develop.
|
|
3
|
+
"version": "14.3.0-develop.11",
|
|
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",
|
|
@@ -33,25 +33,25 @@
|
|
|
33
33
|
"@progress/kendo-data-query": "^1.0.0",
|
|
34
34
|
"@progress/kendo-drawing": "^1.17.2",
|
|
35
35
|
"@progress/kendo-licensing": "^1.0.2",
|
|
36
|
-
"@progress/kendo-angular-buttons": "14.3.0-develop.
|
|
37
|
-
"@progress/kendo-angular-common": "14.3.0-develop.
|
|
38
|
-
"@progress/kendo-angular-dateinputs": "14.3.0-develop.
|
|
39
|
-
"@progress/kendo-angular-layout": "14.3.0-develop.
|
|
40
|
-
"@progress/kendo-angular-dropdowns": "14.3.0-develop.
|
|
41
|
-
"@progress/kendo-angular-excel-export": "14.3.0-develop.
|
|
42
|
-
"@progress/kendo-angular-icons": "14.3.0-develop.
|
|
43
|
-
"@progress/kendo-angular-inputs": "14.3.0-develop.
|
|
44
|
-
"@progress/kendo-angular-intl": "14.3.0-develop.
|
|
45
|
-
"@progress/kendo-angular-l10n": "14.3.0-develop.
|
|
46
|
-
"@progress/kendo-angular-label": "14.3.0-develop.
|
|
47
|
-
"@progress/kendo-angular-pdf-export": "14.3.0-develop.
|
|
48
|
-
"@progress/kendo-angular-popup": "14.3.0-develop.
|
|
49
|
-
"@progress/kendo-angular-utils": "14.3.0-develop.
|
|
36
|
+
"@progress/kendo-angular-buttons": "14.3.0-develop.11",
|
|
37
|
+
"@progress/kendo-angular-common": "14.3.0-develop.11",
|
|
38
|
+
"@progress/kendo-angular-dateinputs": "14.3.0-develop.11",
|
|
39
|
+
"@progress/kendo-angular-layout": "14.3.0-develop.11",
|
|
40
|
+
"@progress/kendo-angular-dropdowns": "14.3.0-develop.11",
|
|
41
|
+
"@progress/kendo-angular-excel-export": "14.3.0-develop.11",
|
|
42
|
+
"@progress/kendo-angular-icons": "14.3.0-develop.11",
|
|
43
|
+
"@progress/kendo-angular-inputs": "14.3.0-develop.11",
|
|
44
|
+
"@progress/kendo-angular-intl": "14.3.0-develop.11",
|
|
45
|
+
"@progress/kendo-angular-l10n": "14.3.0-develop.11",
|
|
46
|
+
"@progress/kendo-angular-label": "14.3.0-develop.11",
|
|
47
|
+
"@progress/kendo-angular-pdf-export": "14.3.0-develop.11",
|
|
48
|
+
"@progress/kendo-angular-popup": "14.3.0-develop.11",
|
|
49
|
+
"@progress/kendo-angular-utils": "14.3.0-develop.11",
|
|
50
50
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"tslib": "^2.3.1",
|
|
54
|
-
"@progress/kendo-angular-schematics": "14.3.0-develop.
|
|
54
|
+
"@progress/kendo-angular-schematics": "14.3.0-develop.11",
|
|
55
55
|
"@progress/kendo-common": "^0.2.0",
|
|
56
56
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
57
57
|
},
|
|
@@ -4,13 +4,13 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'GridModule', package: 'grid', peerDependencies: {
|
|
6
6
|
// peer dep of the dropdowns
|
|
7
|
-
'@progress/kendo-angular-treeview': '14.3.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '14.3.0-develop.11',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '14.3.0-develop.
|
|
9
|
+
'@progress/kendo-angular-dialog': '14.3.0-develop.11',
|
|
10
10
|
// peer dependency of kendo-angular-icons
|
|
11
11
|
'@progress/kendo-svg-icons': '^2.0.0',
|
|
12
12
|
// peer dependency of kendo-angular-layout
|
|
13
|
-
'@progress/kendo-angular-progressbar': '14.3.0-develop.
|
|
13
|
+
'@progress/kendo-angular-progressbar': '14.3.0-develop.11'
|
|
14
14
|
} });
|
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
16
16
|
}
|