@progress/kendo-angular-grid 20.0.0-develop.1 → 20.0.0-develop.2
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.
|
@@ -272,6 +272,7 @@ export class GridComponent {
|
|
|
272
272
|
height;
|
|
273
273
|
/**
|
|
274
274
|
* Sets the `style.height` attribute of each Grid data or group header/footer row (`tr`) element in the DOM in pixels.
|
|
275
|
+
* If some row cells have content that requires more space, the row automatically expands to fit the content.
|
|
275
276
|
*/
|
|
276
277
|
rowHeight;
|
|
277
278
|
/**
|
|
@@ -282,6 +283,7 @@ export class GridComponent {
|
|
|
282
283
|
adaptiveMode = 'none';
|
|
283
284
|
/**
|
|
284
285
|
* Sets the `style.height` attribute of each Grid detail row (`tr.k-detail-row`) element in the DOM in pixels.
|
|
286
|
+
* If the detail row has content that requires more space, the row automatically expands to fit the content.
|
|
285
287
|
*/
|
|
286
288
|
detailRowHeight;
|
|
287
289
|
/**
|
|
@@ -1394,7 +1396,6 @@ export class GridComponent {
|
|
|
1394
1396
|
}
|
|
1395
1397
|
ngOnInit() {
|
|
1396
1398
|
if (this.navigable.length) {
|
|
1397
|
-
this.ctx.navigable = this.navigable.includes('table');
|
|
1398
1399
|
this.navigationService.init(this.navigationMetadata(), this.navigable);
|
|
1399
1400
|
}
|
|
1400
1401
|
this.isStacked && this.generateStackedColumns();
|
|
@@ -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: '20.0.0-develop.
|
|
13
|
+
publishDate: 1755782732,
|
|
14
|
+
version: '20.0.0-develop.2',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -22056,8 +22056,8 @@ const packageMetadata = {
|
|
|
22056
22056
|
productName: 'Kendo UI for Angular',
|
|
22057
22057
|
productCode: 'KENDOUIANGULAR',
|
|
22058
22058
|
productCodes: ['KENDOUIANGULAR'],
|
|
22059
|
-
publishDate:
|
|
22060
|
-
version: '20.0.0-develop.
|
|
22059
|
+
publishDate: 1755782732,
|
|
22060
|
+
version: '20.0.0-develop.2',
|
|
22061
22061
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
22062
22062
|
};
|
|
22063
22063
|
|
|
@@ -29586,6 +29586,7 @@ class GridComponent {
|
|
|
29586
29586
|
height;
|
|
29587
29587
|
/**
|
|
29588
29588
|
* Sets the `style.height` attribute of each Grid data or group header/footer row (`tr`) element in the DOM in pixels.
|
|
29589
|
+
* If some row cells have content that requires more space, the row automatically expands to fit the content.
|
|
29589
29590
|
*/
|
|
29590
29591
|
rowHeight;
|
|
29591
29592
|
/**
|
|
@@ -29596,6 +29597,7 @@ class GridComponent {
|
|
|
29596
29597
|
adaptiveMode = 'none';
|
|
29597
29598
|
/**
|
|
29598
29599
|
* Sets the `style.height` attribute of each Grid detail row (`tr.k-detail-row`) element in the DOM in pixels.
|
|
29600
|
+
* If the detail row has content that requires more space, the row automatically expands to fit the content.
|
|
29599
29601
|
*/
|
|
29600
29602
|
detailRowHeight;
|
|
29601
29603
|
/**
|
|
@@ -30708,7 +30710,6 @@ class GridComponent {
|
|
|
30708
30710
|
}
|
|
30709
30711
|
ngOnInit() {
|
|
30710
30712
|
if (this.navigable.length) {
|
|
30711
|
-
this.ctx.navigable = this.navigable.includes('table');
|
|
30712
30713
|
this.navigationService.init(this.navigationMetadata(), this.navigable);
|
|
30713
30714
|
}
|
|
30714
30715
|
this.isStacked && this.generateStackedColumns();
|
package/grid.component.d.ts
CHANGED
|
@@ -185,6 +185,7 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
185
185
|
height: number;
|
|
186
186
|
/**
|
|
187
187
|
* Sets the `style.height` attribute of each Grid data or group header/footer row (`tr`) element in the DOM in pixels.
|
|
188
|
+
* If some row cells have content that requires more space, the row automatically expands to fit the content.
|
|
188
189
|
*/
|
|
189
190
|
rowHeight: number;
|
|
190
191
|
/**
|
|
@@ -195,6 +196,7 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
195
196
|
adaptiveMode: AdaptiveMode;
|
|
196
197
|
/**
|
|
197
198
|
* Sets the `style.height` attribute of each Grid detail row (`tr.k-detail-row`) element in the DOM in pixels.
|
|
199
|
+
* If the detail row has content that requires more space, the row automatically expands to fit the content.
|
|
198
200
|
*/
|
|
199
201
|
detailRowHeight: number;
|
|
200
202
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "20.0.0-develop.
|
|
3
|
+
"version": "20.0.0-develop.2",
|
|
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",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"package": {
|
|
42
42
|
"productName": "Kendo UI for Angular",
|
|
43
43
|
"productCode": "KENDOUIANGULAR",
|
|
44
|
-
"publishDate":
|
|
44
|
+
"publishDate": 1755782732,
|
|
45
45
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
46
46
|
}
|
|
47
47
|
},
|
|
@@ -54,29 +54,29 @@
|
|
|
54
54
|
"@progress/kendo-data-query": "^1.0.0",
|
|
55
55
|
"@progress/kendo-drawing": "^1.21.0",
|
|
56
56
|
"@progress/kendo-licensing": "^1.7.0",
|
|
57
|
-
"@progress/kendo-angular-buttons": "20.0.0-develop.
|
|
58
|
-
"@progress/kendo-angular-common": "20.0.0-develop.
|
|
59
|
-
"@progress/kendo-angular-dateinputs": "20.0.0-develop.
|
|
60
|
-
"@progress/kendo-angular-layout": "20.0.0-develop.
|
|
61
|
-
"@progress/kendo-angular-navigation": "20.0.0-develop.
|
|
62
|
-
"@progress/kendo-angular-dropdowns": "20.0.0-develop.
|
|
63
|
-
"@progress/kendo-angular-excel-export": "20.0.0-develop.
|
|
64
|
-
"@progress/kendo-angular-icons": "20.0.0-develop.
|
|
65
|
-
"@progress/kendo-angular-inputs": "20.0.0-develop.
|
|
66
|
-
"@progress/kendo-angular-conversational-ui": "20.0.0-develop.
|
|
67
|
-
"@progress/kendo-angular-intl": "20.0.0-develop.
|
|
68
|
-
"@progress/kendo-angular-l10n": "20.0.0-develop.
|
|
69
|
-
"@progress/kendo-angular-label": "20.0.0-develop.
|
|
70
|
-
"@progress/kendo-angular-pager": "20.0.0-develop.
|
|
71
|
-
"@progress/kendo-angular-pdf-export": "20.0.0-develop.
|
|
72
|
-
"@progress/kendo-angular-popup": "20.0.0-develop.
|
|
73
|
-
"@progress/kendo-angular-toolbar": "20.0.0-develop.
|
|
74
|
-
"@progress/kendo-angular-utils": "20.0.0-develop.
|
|
57
|
+
"@progress/kendo-angular-buttons": "20.0.0-develop.2",
|
|
58
|
+
"@progress/kendo-angular-common": "20.0.0-develop.2",
|
|
59
|
+
"@progress/kendo-angular-dateinputs": "20.0.0-develop.2",
|
|
60
|
+
"@progress/kendo-angular-layout": "20.0.0-develop.2",
|
|
61
|
+
"@progress/kendo-angular-navigation": "20.0.0-develop.2",
|
|
62
|
+
"@progress/kendo-angular-dropdowns": "20.0.0-develop.2",
|
|
63
|
+
"@progress/kendo-angular-excel-export": "20.0.0-develop.2",
|
|
64
|
+
"@progress/kendo-angular-icons": "20.0.0-develop.2",
|
|
65
|
+
"@progress/kendo-angular-inputs": "20.0.0-develop.2",
|
|
66
|
+
"@progress/kendo-angular-conversational-ui": "20.0.0-develop.2",
|
|
67
|
+
"@progress/kendo-angular-intl": "20.0.0-develop.2",
|
|
68
|
+
"@progress/kendo-angular-l10n": "20.0.0-develop.2",
|
|
69
|
+
"@progress/kendo-angular-label": "20.0.0-develop.2",
|
|
70
|
+
"@progress/kendo-angular-pager": "20.0.0-develop.2",
|
|
71
|
+
"@progress/kendo-angular-pdf-export": "20.0.0-develop.2",
|
|
72
|
+
"@progress/kendo-angular-popup": "20.0.0-develop.2",
|
|
73
|
+
"@progress/kendo-angular-toolbar": "20.0.0-develop.2",
|
|
74
|
+
"@progress/kendo-angular-utils": "20.0.0-develop.2",
|
|
75
75
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
78
|
"tslib": "^2.3.1",
|
|
79
|
-
"@progress/kendo-angular-schematics": "20.0.0-develop.
|
|
79
|
+
"@progress/kendo-angular-schematics": "20.0.0-develop.2",
|
|
80
80
|
"@progress/kendo-common": "^1.0.1",
|
|
81
81
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
82
82
|
},
|
|
@@ -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': '20.0.0-develop.
|
|
8
|
-
'@progress/kendo-angular-navigation': '20.0.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '20.0.0-develop.2',
|
|
8
|
+
'@progress/kendo-angular-navigation': '20.0.0-develop.2',
|
|
9
9
|
// peer dependency of kendo-angular-inputs
|
|
10
|
-
'@progress/kendo-angular-dialog': '20.0.0-develop.
|
|
10
|
+
'@progress/kendo-angular-dialog': '20.0.0-develop.2',
|
|
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': '20.0.0-develop.
|
|
14
|
+
'@progress/kendo-angular-progressbar': '20.0.0-develop.2'
|
|
15
15
|
} });
|
|
16
16
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
17
17
|
}
|