@progress/kendo-angular-grid 16.4.0-develop.4 → 16.4.0-develop.6
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/columns/column-base.d.ts +1 -1
- package/esm2020/grid.component.mjs +3 -5
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-grid.mjs +5 -7
- package/fesm2020/progress-kendo-angular-grid.mjs +5 -7
- package/grid.component.d.ts +3 -5
- package/package.json +16 -16
- package/schematics/ngAdd/index.js +4 -4
- package/scrolling/scroll-request.service.d.ts +2 -2
package/columns/column-base.d.ts
CHANGED
|
@@ -103,7 +103,7 @@ export declare class ColumnBase {
|
|
|
103
103
|
*/
|
|
104
104
|
sticky: boolean;
|
|
105
105
|
/**
|
|
106
|
-
* Sets the visibility of the column ([see example](
|
|
106
|
+
* Sets the visibility of the column ([see example](slug:hidden_columns_grid#toc-using-the-built-in-options)).
|
|
107
107
|
*
|
|
108
108
|
* @default false
|
|
109
109
|
*/
|
|
@@ -281,12 +281,10 @@ export class GridComponent {
|
|
|
281
281
|
this.sortChange = new EventEmitter();
|
|
282
282
|
/**
|
|
283
283
|
* Fires when the user selects a Grid row.
|
|
284
|
-
* Emits the [SelectionEvent]({% slug api_grid_selectionevent %}#toc-selectionchange).
|
|
285
284
|
*/
|
|
286
285
|
this.selectionChange = new EventEmitter();
|
|
287
286
|
/**
|
|
288
287
|
* Fires when the user drops the dragged row and reordering is performed.
|
|
289
|
-
* Emits the [RowReorderEvent]({% slug api_grid_rowreorderevent %}).
|
|
290
288
|
*/
|
|
291
289
|
this.rowReorder = new EventEmitter();
|
|
292
290
|
/**
|
|
@@ -311,7 +309,7 @@ export class GridComponent {
|
|
|
311
309
|
this.detailCollapse = new EventEmitter();
|
|
312
310
|
/**
|
|
313
311
|
* Fires when the user clicks the **Edit** command button to edit a row
|
|
314
|
-
* ([see example]({% slug inline_editing_grid %}#toc-editing-records-1).
|
|
312
|
+
* ([see example])({% slug inline_editing_grid %}#toc-editing-records-1).
|
|
315
313
|
*/
|
|
316
314
|
this.edit = new EventEmitter();
|
|
317
315
|
/**
|
|
@@ -1411,13 +1409,13 @@ export class GridComponent {
|
|
|
1411
1409
|
return this.navigationService.focusPrevCell(wrap);
|
|
1412
1410
|
}
|
|
1413
1411
|
/**
|
|
1414
|
-
* Scrolls to the specified row and column ([see example](
|
|
1412
|
+
* Scrolls to the specified row and column ([see example](slug:scrollmmodes_grid#toc-scrolling-to-a-specific-row-and-column)).
|
|
1415
1413
|
*/
|
|
1416
1414
|
scrollTo(request) {
|
|
1417
1415
|
this.scrollRequestService.scrollTo(request, false);
|
|
1418
1416
|
}
|
|
1419
1417
|
/**
|
|
1420
|
-
* Scrolls to the specified data item and column ([see example](
|
|
1418
|
+
* Scrolls to the specified data item and column ([see example](slug:scrollmmodes_grid#toc-scrolling-to-a-specific-item)).
|
|
1421
1419
|
*/
|
|
1422
1420
|
scrollToItem(request) {
|
|
1423
1421
|
this.scrollRequestService.scrollToItem(request);
|
|
@@ -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: '16.4.0-develop.
|
|
12
|
+
publishDate: 1720185111,
|
|
13
|
+
version: '16.4.0-develop.6',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -4581,8 +4581,8 @@ const packageMetadata = {
|
|
|
4581
4581
|
name: '@progress/kendo-angular-grid',
|
|
4582
4582
|
productName: 'Kendo UI for Angular',
|
|
4583
4583
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
4584
|
-
publishDate:
|
|
4585
|
-
version: '16.4.0-develop.
|
|
4584
|
+
publishDate: 1720185111,
|
|
4585
|
+
version: '16.4.0-develop.6',
|
|
4586
4586
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
4587
4587
|
};
|
|
4588
4588
|
|
|
@@ -20294,12 +20294,10 @@ class GridComponent {
|
|
|
20294
20294
|
this.sortChange = new EventEmitter();
|
|
20295
20295
|
/**
|
|
20296
20296
|
* Fires when the user selects a Grid row.
|
|
20297
|
-
* Emits the [SelectionEvent]({% slug api_grid_selectionevent %}#toc-selectionchange).
|
|
20298
20297
|
*/
|
|
20299
20298
|
this.selectionChange = new EventEmitter();
|
|
20300
20299
|
/**
|
|
20301
20300
|
* Fires when the user drops the dragged row and reordering is performed.
|
|
20302
|
-
* Emits the [RowReorderEvent]({% slug api_grid_rowreorderevent %}).
|
|
20303
20301
|
*/
|
|
20304
20302
|
this.rowReorder = new EventEmitter();
|
|
20305
20303
|
/**
|
|
@@ -20324,7 +20322,7 @@ class GridComponent {
|
|
|
20324
20322
|
this.detailCollapse = new EventEmitter();
|
|
20325
20323
|
/**
|
|
20326
20324
|
* Fires when the user clicks the **Edit** command button to edit a row
|
|
20327
|
-
* ([see example]({% slug inline_editing_grid %}#toc-editing-records-1).
|
|
20325
|
+
* ([see example])({% slug inline_editing_grid %}#toc-editing-records-1).
|
|
20328
20326
|
*/
|
|
20329
20327
|
this.edit = new EventEmitter();
|
|
20330
20328
|
/**
|
|
@@ -21426,13 +21424,13 @@ class GridComponent {
|
|
|
21426
21424
|
return this.navigationService.focusPrevCell(wrap);
|
|
21427
21425
|
}
|
|
21428
21426
|
/**
|
|
21429
|
-
* Scrolls to the specified row and column ([see example](
|
|
21427
|
+
* Scrolls to the specified row and column ([see example](slug:scrollmmodes_grid#toc-scrolling-to-a-specific-row-and-column)).
|
|
21430
21428
|
*/
|
|
21431
21429
|
scrollTo(request) {
|
|
21432
21430
|
this.scrollRequestService.scrollTo(request, false);
|
|
21433
21431
|
}
|
|
21434
21432
|
/**
|
|
21435
|
-
* Scrolls to the specified data item and column ([see example](
|
|
21433
|
+
* Scrolls to the specified data item and column ([see example](slug:scrollmmodes_grid#toc-scrolling-to-a-specific-item)).
|
|
21436
21434
|
*/
|
|
21437
21435
|
scrollToItem(request) {
|
|
21438
21436
|
this.scrollRequestService.scrollToItem(request);
|
|
@@ -4549,8 +4549,8 @@ const packageMetadata = {
|
|
|
4549
4549
|
name: '@progress/kendo-angular-grid',
|
|
4550
4550
|
productName: 'Kendo UI for Angular',
|
|
4551
4551
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
4552
|
-
publishDate:
|
|
4553
|
-
version: '16.4.0-develop.
|
|
4552
|
+
publishDate: 1720185111,
|
|
4553
|
+
version: '16.4.0-develop.6',
|
|
4554
4554
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
4555
4555
|
};
|
|
4556
4556
|
|
|
@@ -20208,12 +20208,10 @@ class GridComponent {
|
|
|
20208
20208
|
this.sortChange = new EventEmitter();
|
|
20209
20209
|
/**
|
|
20210
20210
|
* Fires when the user selects a Grid row.
|
|
20211
|
-
* Emits the [SelectionEvent]({% slug api_grid_selectionevent %}#toc-selectionchange).
|
|
20212
20211
|
*/
|
|
20213
20212
|
this.selectionChange = new EventEmitter();
|
|
20214
20213
|
/**
|
|
20215
20214
|
* Fires when the user drops the dragged row and reordering is performed.
|
|
20216
|
-
* Emits the [RowReorderEvent]({% slug api_grid_rowreorderevent %}).
|
|
20217
20215
|
*/
|
|
20218
20216
|
this.rowReorder = new EventEmitter();
|
|
20219
20217
|
/**
|
|
@@ -20238,7 +20236,7 @@ class GridComponent {
|
|
|
20238
20236
|
this.detailCollapse = new EventEmitter();
|
|
20239
20237
|
/**
|
|
20240
20238
|
* Fires when the user clicks the **Edit** command button to edit a row
|
|
20241
|
-
* ([see example]({% slug inline_editing_grid %}#toc-editing-records-1).
|
|
20239
|
+
* ([see example])({% slug inline_editing_grid %}#toc-editing-records-1).
|
|
20242
20240
|
*/
|
|
20243
20241
|
this.edit = new EventEmitter();
|
|
20244
20242
|
/**
|
|
@@ -21338,13 +21336,13 @@ class GridComponent {
|
|
|
21338
21336
|
return this.navigationService.focusPrevCell(wrap);
|
|
21339
21337
|
}
|
|
21340
21338
|
/**
|
|
21341
|
-
* Scrolls to the specified row and column ([see example](
|
|
21339
|
+
* Scrolls to the specified row and column ([see example](slug:scrollmmodes_grid#toc-scrolling-to-a-specific-row-and-column)).
|
|
21342
21340
|
*/
|
|
21343
21341
|
scrollTo(request) {
|
|
21344
21342
|
this.scrollRequestService.scrollTo(request, false);
|
|
21345
21343
|
}
|
|
21346
21344
|
/**
|
|
21347
|
-
* Scrolls to the specified data item and column ([see example](
|
|
21345
|
+
* Scrolls to the specified data item and column ([see example](slug:scrollmmodes_grid#toc-scrolling-to-a-specific-item)).
|
|
21348
21346
|
*/
|
|
21349
21347
|
scrollToItem(request) {
|
|
21350
21348
|
this.scrollRequestService.scrollToItem(request);
|
package/grid.component.d.ts
CHANGED
|
@@ -394,12 +394,10 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
394
394
|
sortChange: EventEmitter<Array<SortDescriptor>>;
|
|
395
395
|
/**
|
|
396
396
|
* Fires when the user selects a Grid row.
|
|
397
|
-
* Emits the [SelectionEvent]({% slug api_grid_selectionevent %}#toc-selectionchange).
|
|
398
397
|
*/
|
|
399
398
|
selectionChange: EventEmitter<SelectionEvent>;
|
|
400
399
|
/**
|
|
401
400
|
* Fires when the user drops the dragged row and reordering is performed.
|
|
402
|
-
* Emits the [RowReorderEvent]({% slug api_grid_rowreorderevent %}).
|
|
403
401
|
*/
|
|
404
402
|
rowReorder: EventEmitter<RowReorderEvent>;
|
|
405
403
|
/**
|
|
@@ -424,7 +422,7 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
424
422
|
detailCollapse: EventEmitter<DetailCollapseEvent>;
|
|
425
423
|
/**
|
|
426
424
|
* Fires when the user clicks the **Edit** command button to edit a row
|
|
427
|
-
* ([see example]({% slug inline_editing_grid %}#toc-editing-records-1).
|
|
425
|
+
* ([see example])({% slug inline_editing_grid %}#toc-editing-records-1).
|
|
428
426
|
*/
|
|
429
427
|
edit: EventEmitter<EditEvent>;
|
|
430
428
|
/**
|
|
@@ -842,11 +840,11 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
842
840
|
*/
|
|
843
841
|
focusPrevCell(wrap?: boolean): NavigationCell;
|
|
844
842
|
/**
|
|
845
|
-
* Scrolls to the specified row and column ([see example](
|
|
843
|
+
* Scrolls to the specified row and column ([see example](slug:scrollmmodes_grid#toc-scrolling-to-a-specific-row-and-column)).
|
|
846
844
|
*/
|
|
847
845
|
scrollTo(request: ScrollRequest): void;
|
|
848
846
|
/**
|
|
849
|
-
* Scrolls to the specified data item and column ([see example](
|
|
847
|
+
* Scrolls to the specified data item and column ([see example](slug:scrollmmodes_grid#toc-scrolling-to-a-specific-item)).
|
|
850
848
|
*/
|
|
851
849
|
scrollToItem(request: ScrollToItemRequest): void;
|
|
852
850
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "16.4.0-develop.
|
|
3
|
+
"version": "16.4.0-develop.6",
|
|
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.19.0",
|
|
35
35
|
"@progress/kendo-licensing": "^1.0.2",
|
|
36
|
-
"@progress/kendo-angular-buttons": "16.4.0-develop.
|
|
37
|
-
"@progress/kendo-angular-common": "16.4.0-develop.
|
|
38
|
-
"@progress/kendo-angular-dateinputs": "16.4.0-develop.
|
|
39
|
-
"@progress/kendo-angular-layout": "16.4.0-develop.
|
|
40
|
-
"@progress/kendo-angular-dropdowns": "16.4.0-develop.
|
|
41
|
-
"@progress/kendo-angular-excel-export": "16.4.0-develop.
|
|
42
|
-
"@progress/kendo-angular-icons": "16.4.0-develop.
|
|
43
|
-
"@progress/kendo-angular-inputs": "16.4.0-develop.
|
|
44
|
-
"@progress/kendo-angular-intl": "16.4.0-develop.
|
|
45
|
-
"@progress/kendo-angular-l10n": "16.4.0-develop.
|
|
46
|
-
"@progress/kendo-angular-label": "16.4.0-develop.
|
|
47
|
-
"@progress/kendo-angular-pdf-export": "16.4.0-develop.
|
|
48
|
-
"@progress/kendo-angular-popup": "16.4.0-develop.
|
|
49
|
-
"@progress/kendo-angular-utils": "16.4.0-develop.
|
|
36
|
+
"@progress/kendo-angular-buttons": "16.4.0-develop.6",
|
|
37
|
+
"@progress/kendo-angular-common": "16.4.0-develop.6",
|
|
38
|
+
"@progress/kendo-angular-dateinputs": "16.4.0-develop.6",
|
|
39
|
+
"@progress/kendo-angular-layout": "16.4.0-develop.6",
|
|
40
|
+
"@progress/kendo-angular-dropdowns": "16.4.0-develop.6",
|
|
41
|
+
"@progress/kendo-angular-excel-export": "16.4.0-develop.6",
|
|
42
|
+
"@progress/kendo-angular-icons": "16.4.0-develop.6",
|
|
43
|
+
"@progress/kendo-angular-inputs": "16.4.0-develop.6",
|
|
44
|
+
"@progress/kendo-angular-intl": "16.4.0-develop.6",
|
|
45
|
+
"@progress/kendo-angular-l10n": "16.4.0-develop.6",
|
|
46
|
+
"@progress/kendo-angular-label": "16.4.0-develop.6",
|
|
47
|
+
"@progress/kendo-angular-pdf-export": "16.4.0-develop.6",
|
|
48
|
+
"@progress/kendo-angular-popup": "16.4.0-develop.6",
|
|
49
|
+
"@progress/kendo-angular-utils": "16.4.0-develop.6",
|
|
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": "16.4.0-develop.
|
|
54
|
+
"@progress/kendo-angular-schematics": "16.4.0-develop.6",
|
|
55
55
|
"@progress/kendo-common": "^0.2.0",
|
|
56
56
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
57
57
|
},
|
|
@@ -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': '16.4.0-develop.
|
|
8
|
-
'@progress/kendo-angular-navigation': '16.4.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '16.4.0-develop.6',
|
|
8
|
+
'@progress/kendo-angular-navigation': '16.4.0-develop.6',
|
|
9
9
|
// peer dependency of kendo-angular-inputs
|
|
10
|
-
'@progress/kendo-angular-dialog': '16.4.0-develop.
|
|
10
|
+
'@progress/kendo-angular-dialog': '16.4.0-develop.6',
|
|
11
11
|
// peer dependency of kendo-angular-icons
|
|
12
12
|
'@progress/kendo-svg-icons': '^3.0.0',
|
|
13
13
|
// peer dependency of kendo-angular-layout
|
|
14
|
-
'@progress/kendo-angular-progressbar': '16.4.0-develop.
|
|
14
|
+
'@progress/kendo-angular-progressbar': '16.4.0-develop.6'
|
|
15
15
|
} });
|
|
16
16
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
17
17
|
}
|
|
@@ -6,7 +6,7 @@ import { Subject } from 'rxjs';
|
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* Arguments for the `scrollTo` method. Specifies to which row or column should the Grid scroll to.
|
|
9
|
-
* [See example](slug:scrollmmodes_grid
|
|
9
|
+
* [See example](slug:scrollmmodes_grid/#toc-scrolling-to-a-specific-row-and-column).
|
|
10
10
|
*/
|
|
11
11
|
export interface ScrollRequest {
|
|
12
12
|
/**
|
|
@@ -20,7 +20,7 @@ export interface ScrollRequest {
|
|
|
20
20
|
}
|
|
21
21
|
/**
|
|
22
22
|
* Arguments for the `scrollToItem` method. Specifies to which data item and column should the Grid scroll to.
|
|
23
|
-
* [See example](slug:scrollmmodes_grid#toc-scrolling-to-a-specific-
|
|
23
|
+
* [See example](slug:scrollmmodes_grid#toc-scrolling-to-a-specific-item).
|
|
24
24
|
*/
|
|
25
25
|
export interface ScrollToItemRequest {
|
|
26
26
|
/**
|