@progress/kendo-angular-grid 19.3.0-develop.35 → 19.3.0-develop.37

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.
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { StackedLayoutSettings } from "./stacked-layout-settings";
5
+ import { GridColSize } from "./grid-col-size";
6
6
  /**
7
7
  * Specifies the Grid data layout display mode.
8
8
  */
@@ -13,7 +13,9 @@ export interface DataLayoutModeSettings {
13
13
  */
14
14
  mode?: DataLayoutMode;
15
15
  /**
16
- * Specifies the settings for the stacked layout mode.
16
+ * Configures the stacked columns layout and widths. The possible options are:
17
+ * * - as a `number` - Sets the number of columns with default widths.
18
+ * * - as an `Array<number | string | GridColSize>` - The size of the array represents the number of columns, and the values represent the column widths
17
19
  */
18
- stackedLayoutSettings?: StackedLayoutSettings;
20
+ stackedCols?: number | Array<number | string | GridColSize>;
19
21
  }
@@ -2,17 +2,6 @@
2
2
  * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * Specifies settings for the stacked columns layout of the Grid.
7
- */
8
- export interface StackedLayoutSettings {
9
- /**
10
- * Configures the stacked columns layout and widths. The possible options are:
11
- * * - as a `number` - Sets the number of columns with default widths.
12
- * * - as an `Array<number | string | GridColSize>` - The size of the array represents the number of columns, and the values represent the column widths
13
- */
14
- cols?: number | Array<number | string | GridColSize>;
15
- }
16
5
  /**
17
6
  * Represents the size of a column in the stacked layout of the Grid.
18
7
  */
@@ -12,7 +12,7 @@ import * as i0 from "@angular/core";
12
12
  * Represent the directive that manages in-cell editing operations in the Grid when using Reactive Forms ([see example]({% slug editing_directives_grid %}#toc-in-cell-editing)).
13
13
  *
14
14
  * @example
15
- * ```typescript
15
+ * ```html
16
16
  * <kendo-grid [data]="data" kendoGridInCellEditing></kendo-grid>
17
17
  * ```
18
18
  * @remarks
@@ -11,7 +11,7 @@ import * as i0 from "@angular/core";
11
11
  * Represents the directive that manages editing operations in the Grid when using Reactive Forms ([see example](slug:editing_directives_grid#toc-reactive-editing-directive)).
12
12
  *
13
13
  * @example
14
- * ```typescript
14
+ * ```html
15
15
  * <kendo-grid [data]="data" kendoGridReactiveEditing></kendo-grid>
16
16
  * ```
17
17
  * @remarks
@@ -10,7 +10,7 @@ import * as i0 from "@angular/core";
10
10
  * Represents the directive that manages editing operations in the Grid when using Template-Driven Angular Forms ([see example]({% slug editing_directives_grid %}#toc-template-editing-directive)).
11
11
  *
12
12
  * @example
13
- * ```typescript
13
+ * ```html
14
14
  * <kendo-grid [data]="data" kendoGridTemplateEditing></kendo-grid>
15
15
  * ```
16
16
  * @remarks
@@ -15,7 +15,7 @@ import * as i2 from "../editing/local-data-changes.service";
15
15
  * Represent the directive that manages in-cell editing operations in the Grid when using Reactive Forms ([see example]({% slug editing_directives_grid %}#toc-in-cell-editing)).
16
16
  *
17
17
  * @example
18
- * ```typescript
18
+ * ```html
19
19
  * <kendo-grid [data]="data" kendoGridInCellEditing></kendo-grid>
20
20
  * ```
21
21
  * @remarks
@@ -14,7 +14,7 @@ import * as i2 from "../editing/local-data-changes.service";
14
14
  * Represents the directive that manages editing operations in the Grid when using Reactive Forms ([see example](slug:editing_directives_grid#toc-reactive-editing-directive)).
15
15
  *
16
16
  * @example
17
- * ```typescript
17
+ * ```html
18
18
  * <kendo-grid [data]="data" kendoGridReactiveEditing></kendo-grid>
19
19
  * ```
20
20
  * @remarks
@@ -13,7 +13,7 @@ import * as i2 from "../editing/local-data-changes.service";
13
13
  * Represents the directive that manages editing operations in the Grid when using Template-Driven Angular Forms ([see example]({% slug editing_directives_grid %}#toc-template-editing-directive)).
14
14
  *
15
15
  * @example
16
- * ```typescript
16
+ * ```html
17
17
  * <kendo-grid [data]="data" kendoGridTemplateEditing></kendo-grid>
18
18
  * ```
19
19
  * @remarks
@@ -2066,8 +2066,8 @@ export class GridComponent {
2066
2066
  }
2067
2067
  this.stackedColumns.columns = [];
2068
2068
  if (typeof this.dataLayoutMode === 'object') {
2069
- if (this.dataLayoutMode.mode === 'stacked' && this.dataLayoutMode.stackedLayoutSettings?.cols) {
2070
- const columns = this.dataLayoutMode.stackedLayoutSettings.cols;
2069
+ if (this.dataLayoutMode.mode === 'stacked' && this.dataLayoutMode.stackedCols) {
2070
+ const columns = this.dataLayoutMode.stackedCols;
2071
2071
  if (typeof columns === 'number') {
2072
2072
  for (let i = 0; i < columns; i++) {
2073
2073
  const currCol = { width: `${this.wrapper.nativeElement.clientWidth / columns}px` };
@@ -876,6 +876,9 @@ export class NavigationService {
876
876
  this.handleStackedTabNavigation(args);
877
877
  }
878
878
  else if (args.code === Keys.Backspace || args.code === Keys.Delete) {
879
+ if (this.stackedCellEntered || this.editService.isEditing()) {
880
+ return;
881
+ }
879
882
  if (this.activeRow && this.activeRow.dataRowIndex >= 0 && this.activeRow.dataItem) {
880
883
  const row = this.cursor.row;
881
884
  if (!row.groupItem && !this.cursor.cell.detailExpandCell) {
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1754904784,
14
- version: '19.3.0-develop.35',
13
+ publishDate: 1754919965,
14
+ version: '19.3.0-develop.37',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -24,7 +24,8 @@ export class ColGroupComponent {
24
24
  this.ctx = ctx;
25
25
  }
26
26
  getColumnWidth(column) {
27
- return this.isStacked ? '100%' : `${column.width}px`;
27
+ const columnWidth = column.width ? `${column.width}px` : undefined;
28
+ return this.isStacked ? '100%' : columnWidth;
28
29
  }
29
30
  get columnsToRender() {
30
31
  return this.isStacked ? [new ColumnBase()] : columnsToRender(this.columns);
@@ -16,8 +16,11 @@ import * as i1 from "../grid.component";
16
16
  * ([see example](slug:master_detail_expanded_state_grid#toc-built-in-directive))
17
17
  *
18
18
  * @example
19
- * ```typescript
20
- * <kendo-grid [kendoGridExpandDetailsBy]="expandDetailsKey" [expandedDetailKeys]="expandedDetailKeys"></kendo-grid>
19
+ * ```html
20
+ * <kendo-grid
21
+ * [kendoGridExpandDetailsBy]="expandDetailsKey"
22
+ * [expandedDetailKeys]="expandedDetailKeys">
23
+ * </kendo-grid>
21
24
  * ```
22
25
  * @remarks
23
26
  * Applied to: {@link GridComponent}.
@@ -19,6 +19,7 @@ import * as i0 from "@angular/core";
19
19
  * <kendo-grid-column field="ProductName"></kendo-grid-column>
20
20
  * <kendo-grid-column field="UnitPrice"></kendo-grid-column>
21
21
  * </kendo-grid>
22
+ * ```
22
23
  */
23
24
  export class LoadingTemplateDirective {
24
25
  templateRef;
@@ -43,10 +43,13 @@ import * as i7 from "../selection/selection.service";
43
43
  import * as i8 from "../selection/cell-selection.service";
44
44
  import * as i9 from "../common/column-info.service";
45
45
  import * as i10 from "../navigation/navigation.service";
46
- const columnCellIndex = (cell, cells) => {
46
+ const columnCellIndex = (cell, cells, isStacked) => {
47
47
  let cellIndex = 0;
48
48
  for (let idx = 0; idx < cells.length; idx++) {
49
- if (cells[idx] === cell) {
49
+ const isChildCell = cell.parentNode === cells[idx];
50
+ const isActualCell = cell === cells[idx];
51
+ const matches = isActualCell || (isStacked && isChildCell);
52
+ if (matches) {
50
53
  return cellIndex;
51
54
  }
52
55
  if (!hasClasses(cells[idx], 'k-hierarchy-cell k-group-cell')) {
@@ -408,8 +411,8 @@ export class TableBodyComponent {
408
411
  }
409
412
  }
410
413
  cellClickArgs(cell, row, eventArg) {
411
- const cells = this.isStackedMode ? row.querySelectorAll('.k-grid-stack-cell > .k-grid-stack-content') : row.cells;
412
- const index = columnCellIndex(cell, cells);
414
+ const cells = this.isStackedMode ? row.querySelectorAll('.k-grid-stack-cell') : row.cells;
415
+ const index = columnCellIndex(cell, cells, this.isStackedMode);
413
416
  if (!isPresent(index)) {
414
417
  return;
415
418
  }
@@ -12,7 +12,7 @@ import * as i1 from "../common/provider.service";
12
12
  * ([see example]({% slug selection_grid %}#toc-toggling-the-selection-functionality)).
13
13
  *
14
14
  * @example
15
- * ```typescript
15
+ * ```html
16
16
  * <kendo-grid kendoGridSelectBy="ProductID"></kendo-grid>
17
17
  *
18
18
  * <kendo-grid [kendoGridSelectBy]="myKey"></kendo-grid>
@@ -4224,6 +4224,9 @@ class NavigationService {
4224
4224
  this.handleStackedTabNavigation(args);
4225
4225
  }
4226
4226
  else if (args.code === Keys.Backspace || args.code === Keys.Delete) {
4227
+ if (this.stackedCellEntered || this.editService.isEditing()) {
4228
+ return;
4229
+ }
4227
4230
  if (this.activeRow && this.activeRow.dataRowIndex >= 0 && this.activeRow.dataItem) {
4228
4231
  const row = this.cursor.row;
4229
4232
  if (!row.groupItem && !this.cursor.cell.detailExpandCell) {
@@ -4653,7 +4656,8 @@ class ColGroupComponent {
4653
4656
  this.ctx = ctx;
4654
4657
  }
4655
4658
  getColumnWidth(column) {
4656
- return this.isStacked ? '100%' : `${column.width}px`;
4659
+ const columnWidth = column.width ? `${column.width}px` : undefined;
4660
+ return this.isStacked ? '100%' : columnWidth;
4657
4661
  }
4658
4662
  get columnsToRender() {
4659
4663
  return this.isStacked ? [new ColumnBase()] : columnsToRender(this.columns);
@@ -4729,6 +4733,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
4729
4733
  * <kendo-grid-column field="ProductName"></kendo-grid-column>
4730
4734
  * <kendo-grid-column field="UnitPrice"></kendo-grid-column>
4731
4735
  * </kendo-grid>
4736
+ * ```
4732
4737
  */
4733
4738
  class LoadingTemplateDirective {
4734
4739
  templateRef;
@@ -20166,10 +20171,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
20166
20171
  type: Input
20167
20172
  }] } });
20168
20173
 
20169
- const columnCellIndex = (cell, cells) => {
20174
+ const columnCellIndex = (cell, cells, isStacked) => {
20170
20175
  let cellIndex = 0;
20171
20176
  for (let idx = 0; idx < cells.length; idx++) {
20172
- if (cells[idx] === cell) {
20177
+ const isChildCell = cell.parentNode === cells[idx];
20178
+ const isActualCell = cell === cells[idx];
20179
+ const matches = isActualCell || (isStacked && isChildCell);
20180
+ if (matches) {
20173
20181
  return cellIndex;
20174
20182
  }
20175
20183
  if (!hasClasses(cells[idx], 'k-hierarchy-cell k-group-cell')) {
@@ -20531,8 +20539,8 @@ class TableBodyComponent {
20531
20539
  }
20532
20540
  }
20533
20541
  cellClickArgs(cell, row, eventArg) {
20534
- const cells = this.isStackedMode ? row.querySelectorAll('.k-grid-stack-cell > .k-grid-stack-content') : row.cells;
20535
- const index = columnCellIndex(cell, cells);
20542
+ const cells = this.isStackedMode ? row.querySelectorAll('.k-grid-stack-cell') : row.cells;
20543
+ const index = columnCellIndex(cell, cells, this.isStackedMode);
20536
20544
  if (!isPresent(index)) {
20537
20545
  return;
20538
20546
  }
@@ -22001,8 +22009,8 @@ const packageMetadata = {
22001
22009
  productName: 'Kendo UI for Angular',
22002
22010
  productCode: 'KENDOUIANGULAR',
22003
22011
  productCodes: ['KENDOUIANGULAR'],
22004
- publishDate: 1754904784,
22005
- version: '19.3.0-develop.35',
22012
+ publishDate: 1754919965,
22013
+ version: '19.3.0-develop.37',
22006
22014
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
22007
22015
  };
22008
22016
 
@@ -31118,8 +31126,8 @@ class GridComponent {
31118
31126
  }
31119
31127
  this.stackedColumns.columns = [];
31120
31128
  if (typeof this.dataLayoutMode === 'object') {
31121
- if (this.dataLayoutMode.mode === 'stacked' && this.dataLayoutMode.stackedLayoutSettings?.cols) {
31122
- const columns = this.dataLayoutMode.stackedLayoutSettings.cols;
31129
+ if (this.dataLayoutMode.mode === 'stacked' && this.dataLayoutMode.stackedCols) {
31130
+ const columns = this.dataLayoutMode.stackedCols;
31123
31131
  if (typeof columns === 'number') {
31124
31132
  for (let i = 0; i < columns; i++) {
31125
31133
  const currCol = { width: `${this.wrapper.nativeElement.clientWidth / columns}px` };
@@ -33664,7 +33672,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
33664
33672
  * ([see example]({% slug selection_grid %}#toc-toggling-the-selection-functionality)).
33665
33673
  *
33666
33674
  * @example
33667
- * ```typescript
33675
+ * ```html
33668
33676
  * <kendo-grid kendoGridSelectBy="ProductID"></kendo-grid>
33669
33677
  *
33670
33678
  * <kendo-grid [kendoGridSelectBy]="myKey"></kendo-grid>
@@ -33973,7 +33981,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
33973
33981
  * Represents the directive that manages editing operations in the Grid when using Template-Driven Angular Forms ([see example]({% slug editing_directives_grid %}#toc-template-editing-directive)).
33974
33982
  *
33975
33983
  * @example
33976
- * ```typescript
33984
+ * ```html
33977
33985
  * <kendo-grid [data]="data" kendoGridTemplateEditing></kendo-grid>
33978
33986
  * ```
33979
33987
  * @remarks
@@ -34050,7 +34058,7 @@ const markAllAsTouched = (control) => {
34050
34058
  * Represents the directive that manages editing operations in the Grid when using Reactive Forms ([see example](slug:editing_directives_grid#toc-reactive-editing-directive)).
34051
34059
  *
34052
34060
  * @example
34053
- * ```typescript
34061
+ * ```html
34054
34062
  * <kendo-grid [data]="data" kendoGridReactiveEditing></kendo-grid>
34055
34063
  * ```
34056
34064
  * @remarks
@@ -34099,7 +34107,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
34099
34107
  * Represent the directive that manages in-cell editing operations in the Grid when using Reactive Forms ([see example]({% slug editing_directives_grid %}#toc-in-cell-editing)).
34100
34108
  *
34101
34109
  * @example
34102
- * ```typescript
34110
+ * ```html
34103
34111
  * <kendo-grid [data]="data" kendoGridInCellEditing></kendo-grid>
34104
34112
  * ```
34105
34113
  * @remarks
@@ -34322,8 +34330,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
34322
34330
  * ([see example](slug:master_detail_expanded_state_grid#toc-built-in-directive))
34323
34331
  *
34324
34332
  * @example
34325
- * ```typescript
34326
- * <kendo-grid [kendoGridExpandDetailsBy]="expandDetailsKey" [expandedDetailKeys]="expandedDetailKeys"></kendo-grid>
34333
+ * ```html
34334
+ * <kendo-grid
34335
+ * [kendoGridExpandDetailsBy]="expandDetailsKey"
34336
+ * [expandedDetailKeys]="expandedDetailKeys">
34337
+ * </kendo-grid>
34327
34338
  * ```
34328
34339
  * @remarks
34329
34340
  * Applied to: {@link GridComponent}.
@@ -90,7 +90,7 @@ import { AdaptiveRendererComponent } from './adaptiveness/adaptive-renderer.comp
90
90
  import { DataMappingService } from './data/data-mapping.service';
91
91
  import { AIAssistantToolbarDirective } from './rendering/toolbar/tools/ai-assistant/ai-tool.directive';
92
92
  import { DataLayoutMode, DataLayoutModeSettings } from './common/data-layout-mode';
93
- import { GridColSize } from './common/stacked-layout-settings';
93
+ import { GridColSize } from './common/grid-col-size';
94
94
  import * as i0 from "@angular/core";
95
95
  /**
96
96
  * Represents the Kendo UI for Angular Data Grid component.
package/index.d.ts CHANGED
@@ -198,7 +198,7 @@ export { CellRowspanFn } from './columns/cell-rowspan';
198
198
  export { HighlightItem } from './highlight/highlight-item';
199
199
  export { HighlightDirective } from './highlight/highlight.directive';
200
200
  export { DataLayoutMode, DataLayoutModeSettings } from './common/data-layout-mode';
201
- export { StackedLayoutSettings, GridColSize } from './common/stacked-layout-settings';
201
+ export { GridColSize } from './common/grid-col-size';
202
202
  export { ColumnMenuTemplateDirective } from './column-menu/column-menu-template.directive';
203
203
  export { EditCommandDirective } from './editing/edit-command.directive';
204
204
  export { CancelCommandDirective } from './editing/cancel-command.directive';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-grid",
3
- "version": "19.3.0-develop.35",
3
+ "version": "19.3.0-develop.37",
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",
@@ -26,7 +26,7 @@
26
26
  "package": {
27
27
  "productName": "Kendo UI for Angular",
28
28
  "productCode": "KENDOUIANGULAR",
29
- "publishDate": 1754904784,
29
+ "publishDate": 1754919965,
30
30
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
31
31
  }
32
32
  },
@@ -39,29 +39,29 @@
39
39
  "@progress/kendo-data-query": "^1.0.0",
40
40
  "@progress/kendo-drawing": "^1.21.0",
41
41
  "@progress/kendo-licensing": "^1.7.0",
42
- "@progress/kendo-angular-buttons": "19.3.0-develop.35",
43
- "@progress/kendo-angular-common": "19.3.0-develop.35",
44
- "@progress/kendo-angular-dateinputs": "19.3.0-develop.35",
45
- "@progress/kendo-angular-layout": "19.3.0-develop.35",
46
- "@progress/kendo-angular-navigation": "19.3.0-develop.35",
47
- "@progress/kendo-angular-dropdowns": "19.3.0-develop.35",
48
- "@progress/kendo-angular-excel-export": "19.3.0-develop.35",
49
- "@progress/kendo-angular-icons": "19.3.0-develop.35",
50
- "@progress/kendo-angular-inputs": "19.3.0-develop.35",
51
- "@progress/kendo-angular-conversational-ui": "19.3.0-develop.35",
52
- "@progress/kendo-angular-intl": "19.3.0-develop.35",
53
- "@progress/kendo-angular-l10n": "19.3.0-develop.35",
54
- "@progress/kendo-angular-label": "19.3.0-develop.35",
55
- "@progress/kendo-angular-pager": "19.3.0-develop.35",
56
- "@progress/kendo-angular-pdf-export": "19.3.0-develop.35",
57
- "@progress/kendo-angular-popup": "19.3.0-develop.35",
58
- "@progress/kendo-angular-toolbar": "19.3.0-develop.35",
59
- "@progress/kendo-angular-utils": "19.3.0-develop.35",
42
+ "@progress/kendo-angular-buttons": "19.3.0-develop.37",
43
+ "@progress/kendo-angular-common": "19.3.0-develop.37",
44
+ "@progress/kendo-angular-dateinputs": "19.3.0-develop.37",
45
+ "@progress/kendo-angular-layout": "19.3.0-develop.37",
46
+ "@progress/kendo-angular-navigation": "19.3.0-develop.37",
47
+ "@progress/kendo-angular-dropdowns": "19.3.0-develop.37",
48
+ "@progress/kendo-angular-excel-export": "19.3.0-develop.37",
49
+ "@progress/kendo-angular-icons": "19.3.0-develop.37",
50
+ "@progress/kendo-angular-inputs": "19.3.0-develop.37",
51
+ "@progress/kendo-angular-conversational-ui": "19.3.0-develop.37",
52
+ "@progress/kendo-angular-intl": "19.3.0-develop.37",
53
+ "@progress/kendo-angular-l10n": "19.3.0-develop.37",
54
+ "@progress/kendo-angular-label": "19.3.0-develop.37",
55
+ "@progress/kendo-angular-pager": "19.3.0-develop.37",
56
+ "@progress/kendo-angular-pdf-export": "19.3.0-develop.37",
57
+ "@progress/kendo-angular-popup": "19.3.0-develop.37",
58
+ "@progress/kendo-angular-toolbar": "19.3.0-develop.37",
59
+ "@progress/kendo-angular-utils": "19.3.0-develop.37",
60
60
  "rxjs": "^6.5.3 || ^7.0.0"
61
61
  },
62
62
  "dependencies": {
63
63
  "tslib": "^2.3.1",
64
- "@progress/kendo-angular-schematics": "19.3.0-develop.35",
64
+ "@progress/kendo-angular-schematics": "19.3.0-develop.37",
65
65
  "@progress/kendo-common": "^1.0.1",
66
66
  "@progress/kendo-file-saver": "^1.0.0"
67
67
  },
@@ -13,8 +13,11 @@ import * as i0 from "@angular/core";
13
13
  * ([see example](slug:master_detail_expanded_state_grid#toc-built-in-directive))
14
14
  *
15
15
  * @example
16
- * ```typescript
17
- * <kendo-grid [kendoGridExpandDetailsBy]="expandDetailsKey" [expandedDetailKeys]="expandedDetailKeys"></kendo-grid>
16
+ * ```html
17
+ * <kendo-grid
18
+ * [kendoGridExpandDetailsBy]="expandDetailsKey"
19
+ * [expandedDetailKeys]="expandedDetailKeys">
20
+ * </kendo-grid>
18
21
  * ```
19
22
  * @remarks
20
23
  * Applied to: {@link GridComponent}.
@@ -19,6 +19,7 @@ import * as i0 from "@angular/core";
19
19
  * <kendo-grid-column field="ProductName"></kendo-grid-column>
20
20
  * <kendo-grid-column field="UnitPrice"></kendo-grid-column>
21
21
  * </kendo-grid>
22
+ * ```
22
23
  */
23
24
  export declare class LoadingTemplateDirective {
24
25
  templateRef: TemplateRef<any>;
@@ -4,14 +4,14 @@ 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 deps of the dropdowns
7
- '@progress/kendo-angular-treeview': '19.3.0-develop.35',
8
- '@progress/kendo-angular-navigation': '19.3.0-develop.35',
7
+ '@progress/kendo-angular-treeview': '19.3.0-develop.37',
8
+ '@progress/kendo-angular-navigation': '19.3.0-develop.37',
9
9
  // peer dependency of kendo-angular-inputs
10
- '@progress/kendo-angular-dialog': '19.3.0-develop.35',
10
+ '@progress/kendo-angular-dialog': '19.3.0-develop.37',
11
11
  // peer dependency of kendo-angular-icons
12
12
  '@progress/kendo-svg-icons': '^4.0.0',
13
13
  // peer dependency of kendo-angular-layout
14
- '@progress/kendo-angular-progressbar': '19.3.0-develop.35'
14
+ '@progress/kendo-angular-progressbar': '19.3.0-develop.37'
15
15
  } });
16
16
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
17
17
  }
@@ -11,7 +11,7 @@ import * as i0 from "@angular/core";
11
11
  * ([see example]({% slug selection_grid %}#toc-toggling-the-selection-functionality)).
12
12
  *
13
13
  * @example
14
- * ```typescript
14
+ * ```html
15
15
  * <kendo-grid kendoGridSelectBy="ProductID"></kendo-grid>
16
16
  *
17
17
  * <kendo-grid [kendoGridSelectBy]="myKey"></kendo-grid>