@progress/kendo-angular-grid 15.3.0-develop.5 → 15.3.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 +6 -1
- package/esm2020/columns/column-base.mjs +8 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/rendering/table-body.component.mjs +6 -6
- package/fesm2015/progress-kendo-angular-grid.mjs +16 -9
- package/fesm2020/progress-kendo-angular-grid.mjs +16 -9
- package/package.json +17 -17
- package/schematics/ngAdd/index.js +3 -3
package/columns/column-base.d.ts
CHANGED
|
@@ -136,6 +136,11 @@ export declare class ColumnBase {
|
|
|
136
136
|
* @default true
|
|
137
137
|
*/
|
|
138
138
|
includeInChooser: boolean;
|
|
139
|
+
/**
|
|
140
|
+
* Allows setting the `role` attribute for the table cells (excluding the footer and header ones) of the column.
|
|
141
|
+
* @default "gridcell"
|
|
142
|
+
*/
|
|
143
|
+
tableCellsRole: string;
|
|
139
144
|
/**
|
|
140
145
|
* Sets the custom styles for the table cells (excluding the footer and header ones) of the column. Under the hood,
|
|
141
146
|
* to apply the property, the `style` option uses the
|
|
@@ -275,5 +280,5 @@ export declare class ColumnBase {
|
|
|
275
280
|
*/
|
|
276
281
|
constructor(parent?: ColumnBase, idService?: IdService);
|
|
277
282
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnBase, never>;
|
|
278
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ColumnBase, "kendo-grid-column-base", never, { "resizable": "resizable"; "reorderable": "reorderable"; "minResizableWidth": "minResizableWidth"; "maxResizableWidth": "maxResizableWidth"; "title": "title"; "width": "width"; "autoSize": "autoSize"; "locked": "locked"; "sticky": "sticky"; "hidden": "hidden"; "media": "media"; "lockable": "lockable"; "stickable": "stickable"; "columnMenu": "columnMenu"; "includeInChooser": "includeInChooser"; "style": "style"; "headerStyle": "headerStyle"; "filterStyle": "filterStyle"; "footerStyle": "footerStyle"; "cssClass": "class"; "headerClass": "headerClass"; "filterClass": "filterClass"; "footerClass": "footerClass"; }, {}, ["footerTemplate", "headerTemplates", "columnMenuTemplates"], never>;
|
|
283
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ColumnBase, "kendo-grid-column-base", never, { "resizable": "resizable"; "reorderable": "reorderable"; "minResizableWidth": "minResizableWidth"; "maxResizableWidth": "maxResizableWidth"; "title": "title"; "width": "width"; "autoSize": "autoSize"; "locked": "locked"; "sticky": "sticky"; "hidden": "hidden"; "media": "media"; "lockable": "lockable"; "stickable": "stickable"; "columnMenu": "columnMenu"; "includeInChooser": "includeInChooser"; "tableCellsRole": "tableCellsRole"; "style": "style"; "headerStyle": "headerStyle"; "filterStyle": "filterStyle"; "footerStyle": "footerStyle"; "cssClass": "class"; "headerClass": "headerClass"; "filterClass": "filterClass"; "footerClass": "footerClass"; }, {}, ["footerTemplate", "headerTemplates", "columnMenuTemplates"], never>;
|
|
279
284
|
}
|
|
@@ -93,6 +93,11 @@ export class ColumnBase {
|
|
|
93
93
|
* @default true
|
|
94
94
|
*/
|
|
95
95
|
this.includeInChooser = true;
|
|
96
|
+
/**
|
|
97
|
+
* Allows setting the `role` attribute for the table cells (excluding the footer and header ones) of the column.
|
|
98
|
+
* @default "gridcell"
|
|
99
|
+
*/
|
|
100
|
+
this.tableCellsRole = 'gridcell';
|
|
96
101
|
/**
|
|
97
102
|
* @hidden
|
|
98
103
|
*/
|
|
@@ -206,7 +211,7 @@ export class ColumnBase {
|
|
|
206
211
|
}
|
|
207
212
|
}
|
|
208
213
|
ColumnBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnBase, deps: [{ token: ColumnBase }, { token: i1.IdService }], target: i0.ɵɵFactoryTarget.Component });
|
|
209
|
-
ColumnBase.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ColumnBase, selector: "kendo-grid-column-base", inputs: { resizable: "resizable", reorderable: "reorderable", minResizableWidth: "minResizableWidth", maxResizableWidth: "maxResizableWidth", title: "title", width: "width", autoSize: "autoSize", locked: "locked", sticky: "sticky", hidden: "hidden", media: "media", lockable: "lockable", stickable: "stickable", columnMenu: "columnMenu", includeInChooser: "includeInChooser", style: "style", headerStyle: "headerStyle", filterStyle: "filterStyle", footerStyle: "footerStyle", cssClass: ["class", "cssClass"], headerClass: "headerClass", filterClass: "filterClass", footerClass: "footerClass" }, queries: [{ propertyName: "footerTemplate", first: true, predicate: FooterTemplateDirective, descendants: true }, { propertyName: "headerTemplates", predicate: HeaderTemplateDirective }, { propertyName: "columnMenuTemplates", predicate: ColumnMenuTemplateDirective }], ngImport: i0, template: ``, isInline: true });
|
|
214
|
+
ColumnBase.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ColumnBase, selector: "kendo-grid-column-base", inputs: { resizable: "resizable", reorderable: "reorderable", minResizableWidth: "minResizableWidth", maxResizableWidth: "maxResizableWidth", title: "title", width: "width", autoSize: "autoSize", locked: "locked", sticky: "sticky", hidden: "hidden", media: "media", lockable: "lockable", stickable: "stickable", columnMenu: "columnMenu", includeInChooser: "includeInChooser", tableCellsRole: "tableCellsRole", style: "style", headerStyle: "headerStyle", filterStyle: "filterStyle", footerStyle: "footerStyle", cssClass: ["class", "cssClass"], headerClass: "headerClass", filterClass: "filterClass", footerClass: "footerClass" }, queries: [{ propertyName: "footerTemplate", first: true, predicate: FooterTemplateDirective, descendants: true }, { propertyName: "headerTemplates", predicate: HeaderTemplateDirective }, { propertyName: "columnMenuTemplates", predicate: ColumnMenuTemplateDirective }], ngImport: i0, template: ``, isInline: true });
|
|
210
215
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnBase, decorators: [{
|
|
211
216
|
type: Component,
|
|
212
217
|
args: [{
|
|
@@ -243,6 +248,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
243
248
|
type: Input
|
|
244
249
|
}], includeInChooser: [{
|
|
245
250
|
type: Input
|
|
251
|
+
}], tableCellsRole: [{
|
|
252
|
+
type: Input
|
|
246
253
|
}], style: [{
|
|
247
254
|
type: Input
|
|
248
255
|
}], headerStyle: [{
|
|
@@ -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: '15.3.0-develop.
|
|
12
|
+
publishDate: 1710433662,
|
|
13
|
+
version: '15.3.0-develop.6',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -437,11 +437,11 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
437
437
|
[style.left]="column.sticky ? '0' : undefined"
|
|
438
438
|
[ngStyle]="column.sticky ? addStickyColumnStyles(column) : column.style"
|
|
439
439
|
[attr.colspan]="column.colspan"
|
|
440
|
+
[attr.role]="column.tableCellsRole"
|
|
440
441
|
kendoGridLogicalCell
|
|
441
442
|
[logicalRowIndex]="addRowLogicalIndex()"
|
|
442
443
|
[logicalColIndex]="logicalColIndex(column)"
|
|
443
|
-
[colSpan]="column.colspan"
|
|
444
|
-
role="gridcell">
|
|
444
|
+
[colSpan]="column.colspan">
|
|
445
445
|
</td>
|
|
446
446
|
</tr>
|
|
447
447
|
</ng-container>
|
|
@@ -535,7 +535,7 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
535
535
|
[dataItem]="item.data"
|
|
536
536
|
[colIndex]="columnIndex"
|
|
537
537
|
[colSpan]="column.colspan"
|
|
538
|
-
role="
|
|
538
|
+
[attr.role]="column.tableCellsRole"
|
|
539
539
|
class="k-table-td"
|
|
540
540
|
[attr.aria-selected]="lockedColumnsCount < 1 && isSelectable() ? isAriaSelected(item, column) : undefined"
|
|
541
541
|
[class.k-grid-content-sticky]="column.sticky"
|
|
@@ -666,11 +666,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
666
666
|
[style.left]="column.sticky ? '0' : undefined"
|
|
667
667
|
[ngStyle]="column.sticky ? addStickyColumnStyles(column) : column.style"
|
|
668
668
|
[attr.colspan]="column.colspan"
|
|
669
|
+
[attr.role]="column.tableCellsRole"
|
|
669
670
|
kendoGridLogicalCell
|
|
670
671
|
[logicalRowIndex]="addRowLogicalIndex()"
|
|
671
672
|
[logicalColIndex]="logicalColIndex(column)"
|
|
672
|
-
[colSpan]="column.colspan"
|
|
673
|
-
role="gridcell">
|
|
673
|
+
[colSpan]="column.colspan">
|
|
674
674
|
</td>
|
|
675
675
|
</tr>
|
|
676
676
|
</ng-container>
|
|
@@ -764,7 +764,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
764
764
|
[dataItem]="item.data"
|
|
765
765
|
[colIndex]="columnIndex"
|
|
766
766
|
[colSpan]="column.colspan"
|
|
767
|
-
role="
|
|
767
|
+
[attr.role]="column.tableCellsRole"
|
|
768
768
|
class="k-table-td"
|
|
769
769
|
[attr.aria-selected]="lockedColumnsCount < 1 && isSelectable() ? isAriaSelected(item, column) : undefined"
|
|
770
770
|
[class.k-grid-content-sticky]="column.sticky"
|
|
@@ -623,6 +623,11 @@ class ColumnBase {
|
|
|
623
623
|
* @default true
|
|
624
624
|
*/
|
|
625
625
|
this.includeInChooser = true;
|
|
626
|
+
/**
|
|
627
|
+
* Allows setting the `role` attribute for the table cells (excluding the footer and header ones) of the column.
|
|
628
|
+
* @default "gridcell"
|
|
629
|
+
*/
|
|
630
|
+
this.tableCellsRole = 'gridcell';
|
|
626
631
|
/**
|
|
627
632
|
* @hidden
|
|
628
633
|
*/
|
|
@@ -736,7 +741,7 @@ class ColumnBase {
|
|
|
736
741
|
}
|
|
737
742
|
}
|
|
738
743
|
ColumnBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnBase, deps: [{ token: ColumnBase }, { token: IdService }], target: i0.ɵɵFactoryTarget.Component });
|
|
739
|
-
ColumnBase.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ColumnBase, selector: "kendo-grid-column-base", inputs: { resizable: "resizable", reorderable: "reorderable", minResizableWidth: "minResizableWidth", maxResizableWidth: "maxResizableWidth", title: "title", width: "width", autoSize: "autoSize", locked: "locked", sticky: "sticky", hidden: "hidden", media: "media", lockable: "lockable", stickable: "stickable", columnMenu: "columnMenu", includeInChooser: "includeInChooser", style: "style", headerStyle: "headerStyle", filterStyle: "filterStyle", footerStyle: "footerStyle", cssClass: ["class", "cssClass"], headerClass: "headerClass", filterClass: "filterClass", footerClass: "footerClass" }, queries: [{ propertyName: "footerTemplate", first: true, predicate: FooterTemplateDirective, descendants: true }, { propertyName: "headerTemplates", predicate: HeaderTemplateDirective }, { propertyName: "columnMenuTemplates", predicate: ColumnMenuTemplateDirective }], ngImport: i0, template: ``, isInline: true });
|
|
744
|
+
ColumnBase.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ColumnBase, selector: "kendo-grid-column-base", inputs: { resizable: "resizable", reorderable: "reorderable", minResizableWidth: "minResizableWidth", maxResizableWidth: "maxResizableWidth", title: "title", width: "width", autoSize: "autoSize", locked: "locked", sticky: "sticky", hidden: "hidden", media: "media", lockable: "lockable", stickable: "stickable", columnMenu: "columnMenu", includeInChooser: "includeInChooser", tableCellsRole: "tableCellsRole", style: "style", headerStyle: "headerStyle", filterStyle: "filterStyle", footerStyle: "footerStyle", cssClass: ["class", "cssClass"], headerClass: "headerClass", filterClass: "filterClass", footerClass: "footerClass" }, queries: [{ propertyName: "footerTemplate", first: true, predicate: FooterTemplateDirective, descendants: true }, { propertyName: "headerTemplates", predicate: HeaderTemplateDirective }, { propertyName: "columnMenuTemplates", predicate: ColumnMenuTemplateDirective }], ngImport: i0, template: ``, isInline: true });
|
|
740
745
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnBase, decorators: [{
|
|
741
746
|
type: Component,
|
|
742
747
|
args: [{
|
|
@@ -773,6 +778,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
773
778
|
type: Input
|
|
774
779
|
}], includeInChooser: [{
|
|
775
780
|
type: Input
|
|
781
|
+
}], tableCellsRole: [{
|
|
782
|
+
type: Input
|
|
776
783
|
}], style: [{
|
|
777
784
|
type: Input
|
|
778
785
|
}], headerStyle: [{
|
|
@@ -4566,8 +4573,8 @@ const packageMetadata = {
|
|
|
4566
4573
|
name: '@progress/kendo-angular-grid',
|
|
4567
4574
|
productName: 'Kendo UI for Angular',
|
|
4568
4575
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
4569
|
-
publishDate:
|
|
4570
|
-
version: '15.3.0-develop.
|
|
4576
|
+
publishDate: 1710433662,
|
|
4577
|
+
version: '15.3.0-develop.6',
|
|
4571
4578
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
4572
4579
|
};
|
|
4573
4580
|
|
|
@@ -18105,11 +18112,11 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
18105
18112
|
[style.left]="column.sticky ? '0' : undefined"
|
|
18106
18113
|
[ngStyle]="column.sticky ? addStickyColumnStyles(column) : column.style"
|
|
18107
18114
|
[attr.colspan]="column.colspan"
|
|
18115
|
+
[attr.role]="column.tableCellsRole"
|
|
18108
18116
|
kendoGridLogicalCell
|
|
18109
18117
|
[logicalRowIndex]="addRowLogicalIndex()"
|
|
18110
18118
|
[logicalColIndex]="logicalColIndex(column)"
|
|
18111
|
-
[colSpan]="column.colspan"
|
|
18112
|
-
role="gridcell">
|
|
18119
|
+
[colSpan]="column.colspan">
|
|
18113
18120
|
</td>
|
|
18114
18121
|
</tr>
|
|
18115
18122
|
</ng-container>
|
|
@@ -18203,7 +18210,7 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
18203
18210
|
[dataItem]="item.data"
|
|
18204
18211
|
[colIndex]="columnIndex"
|
|
18205
18212
|
[colSpan]="column.colspan"
|
|
18206
|
-
role="
|
|
18213
|
+
[attr.role]="column.tableCellsRole"
|
|
18207
18214
|
class="k-table-td"
|
|
18208
18215
|
[attr.aria-selected]="lockedColumnsCount < 1 && isSelectable() ? isAriaSelected(item, column) : undefined"
|
|
18209
18216
|
[class.k-grid-content-sticky]="column.sticky"
|
|
@@ -18334,11 +18341,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
18334
18341
|
[style.left]="column.sticky ? '0' : undefined"
|
|
18335
18342
|
[ngStyle]="column.sticky ? addStickyColumnStyles(column) : column.style"
|
|
18336
18343
|
[attr.colspan]="column.colspan"
|
|
18344
|
+
[attr.role]="column.tableCellsRole"
|
|
18337
18345
|
kendoGridLogicalCell
|
|
18338
18346
|
[logicalRowIndex]="addRowLogicalIndex()"
|
|
18339
18347
|
[logicalColIndex]="logicalColIndex(column)"
|
|
18340
|
-
[colSpan]="column.colspan"
|
|
18341
|
-
role="gridcell">
|
|
18348
|
+
[colSpan]="column.colspan">
|
|
18342
18349
|
</td>
|
|
18343
18350
|
</tr>
|
|
18344
18351
|
</ng-container>
|
|
@@ -18432,7 +18439,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
18432
18439
|
[dataItem]="item.data"
|
|
18433
18440
|
[colIndex]="columnIndex"
|
|
18434
18441
|
[colSpan]="column.colspan"
|
|
18435
|
-
role="
|
|
18442
|
+
[attr.role]="column.tableCellsRole"
|
|
18436
18443
|
class="k-table-td"
|
|
18437
18444
|
[attr.aria-selected]="lockedColumnsCount < 1 && isSelectable() ? isAriaSelected(item, column) : undefined"
|
|
18438
18445
|
[class.k-grid-content-sticky]="column.sticky"
|
|
@@ -2402,6 +2402,11 @@ class ColumnBase {
|
|
|
2402
2402
|
* @default true
|
|
2403
2403
|
*/
|
|
2404
2404
|
this.includeInChooser = true;
|
|
2405
|
+
/**
|
|
2406
|
+
* Allows setting the `role` attribute for the table cells (excluding the footer and header ones) of the column.
|
|
2407
|
+
* @default "gridcell"
|
|
2408
|
+
*/
|
|
2409
|
+
this.tableCellsRole = 'gridcell';
|
|
2405
2410
|
/**
|
|
2406
2411
|
* @hidden
|
|
2407
2412
|
*/
|
|
@@ -2515,7 +2520,7 @@ class ColumnBase {
|
|
|
2515
2520
|
}
|
|
2516
2521
|
}
|
|
2517
2522
|
ColumnBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnBase, deps: [{ token: ColumnBase }, { token: IdService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2518
|
-
ColumnBase.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ColumnBase, selector: "kendo-grid-column-base", inputs: { resizable: "resizable", reorderable: "reorderable", minResizableWidth: "minResizableWidth", maxResizableWidth: "maxResizableWidth", title: "title", width: "width", autoSize: "autoSize", locked: "locked", sticky: "sticky", hidden: "hidden", media: "media", lockable: "lockable", stickable: "stickable", columnMenu: "columnMenu", includeInChooser: "includeInChooser", style: "style", headerStyle: "headerStyle", filterStyle: "filterStyle", footerStyle: "footerStyle", cssClass: ["class", "cssClass"], headerClass: "headerClass", filterClass: "filterClass", footerClass: "footerClass" }, queries: [{ propertyName: "footerTemplate", first: true, predicate: FooterTemplateDirective, descendants: true }, { propertyName: "headerTemplates", predicate: HeaderTemplateDirective }, { propertyName: "columnMenuTemplates", predicate: ColumnMenuTemplateDirective }], ngImport: i0, template: ``, isInline: true });
|
|
2523
|
+
ColumnBase.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ColumnBase, selector: "kendo-grid-column-base", inputs: { resizable: "resizable", reorderable: "reorderable", minResizableWidth: "minResizableWidth", maxResizableWidth: "maxResizableWidth", title: "title", width: "width", autoSize: "autoSize", locked: "locked", sticky: "sticky", hidden: "hidden", media: "media", lockable: "lockable", stickable: "stickable", columnMenu: "columnMenu", includeInChooser: "includeInChooser", tableCellsRole: "tableCellsRole", style: "style", headerStyle: "headerStyle", filterStyle: "filterStyle", footerStyle: "footerStyle", cssClass: ["class", "cssClass"], headerClass: "headerClass", filterClass: "filterClass", footerClass: "footerClass" }, queries: [{ propertyName: "footerTemplate", first: true, predicate: FooterTemplateDirective, descendants: true }, { propertyName: "headerTemplates", predicate: HeaderTemplateDirective }, { propertyName: "columnMenuTemplates", predicate: ColumnMenuTemplateDirective }], ngImport: i0, template: ``, isInline: true });
|
|
2519
2524
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnBase, decorators: [{
|
|
2520
2525
|
type: Component,
|
|
2521
2526
|
args: [{
|
|
@@ -2552,6 +2557,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2552
2557
|
type: Input
|
|
2553
2558
|
}], includeInChooser: [{
|
|
2554
2559
|
type: Input
|
|
2560
|
+
}], tableCellsRole: [{
|
|
2561
|
+
type: Input
|
|
2555
2562
|
}], style: [{
|
|
2556
2563
|
type: Input
|
|
2557
2564
|
}], headerStyle: [{
|
|
@@ -4534,8 +4541,8 @@ const packageMetadata = {
|
|
|
4534
4541
|
name: '@progress/kendo-angular-grid',
|
|
4535
4542
|
productName: 'Kendo UI for Angular',
|
|
4536
4543
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
4537
|
-
publishDate:
|
|
4538
|
-
version: '15.3.0-develop.
|
|
4544
|
+
publishDate: 1710433662,
|
|
4545
|
+
version: '15.3.0-develop.6',
|
|
4539
4546
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
4540
4547
|
};
|
|
4541
4548
|
|
|
@@ -18021,11 +18028,11 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
18021
18028
|
[style.left]="column.sticky ? '0' : undefined"
|
|
18022
18029
|
[ngStyle]="column.sticky ? addStickyColumnStyles(column) : column.style"
|
|
18023
18030
|
[attr.colspan]="column.colspan"
|
|
18031
|
+
[attr.role]="column.tableCellsRole"
|
|
18024
18032
|
kendoGridLogicalCell
|
|
18025
18033
|
[logicalRowIndex]="addRowLogicalIndex()"
|
|
18026
18034
|
[logicalColIndex]="logicalColIndex(column)"
|
|
18027
|
-
[colSpan]="column.colspan"
|
|
18028
|
-
role="gridcell">
|
|
18035
|
+
[colSpan]="column.colspan">
|
|
18029
18036
|
</td>
|
|
18030
18037
|
</tr>
|
|
18031
18038
|
</ng-container>
|
|
@@ -18119,7 +18126,7 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
18119
18126
|
[dataItem]="item.data"
|
|
18120
18127
|
[colIndex]="columnIndex"
|
|
18121
18128
|
[colSpan]="column.colspan"
|
|
18122
|
-
role="
|
|
18129
|
+
[attr.role]="column.tableCellsRole"
|
|
18123
18130
|
class="k-table-td"
|
|
18124
18131
|
[attr.aria-selected]="lockedColumnsCount < 1 && isSelectable() ? isAriaSelected(item, column) : undefined"
|
|
18125
18132
|
[class.k-grid-content-sticky]="column.sticky"
|
|
@@ -18250,11 +18257,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
18250
18257
|
[style.left]="column.sticky ? '0' : undefined"
|
|
18251
18258
|
[ngStyle]="column.sticky ? addStickyColumnStyles(column) : column.style"
|
|
18252
18259
|
[attr.colspan]="column.colspan"
|
|
18260
|
+
[attr.role]="column.tableCellsRole"
|
|
18253
18261
|
kendoGridLogicalCell
|
|
18254
18262
|
[logicalRowIndex]="addRowLogicalIndex()"
|
|
18255
18263
|
[logicalColIndex]="logicalColIndex(column)"
|
|
18256
|
-
[colSpan]="column.colspan"
|
|
18257
|
-
role="gridcell">
|
|
18264
|
+
[colSpan]="column.colspan">
|
|
18258
18265
|
</td>
|
|
18259
18266
|
</tr>
|
|
18260
18267
|
</ng-container>
|
|
@@ -18348,7 +18355,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
18348
18355
|
[dataItem]="item.data"
|
|
18349
18356
|
[colIndex]="columnIndex"
|
|
18350
18357
|
[colSpan]="column.colspan"
|
|
18351
|
-
role="
|
|
18358
|
+
[attr.role]="column.tableCellsRole"
|
|
18352
18359
|
class="k-table-td"
|
|
18353
18360
|
[attr.aria-selected]="lockedColumnsCount < 1 && isSelectable() ? isAriaSelected(item, column) : undefined"
|
|
18354
18361
|
[class.k-grid-content-sticky]="column.sticky"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "15.3.0-develop.
|
|
3
|
+
"version": "15.3.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,26 +33,26 @@
|
|
|
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": "15.3.0-develop.
|
|
37
|
-
"@progress/kendo-angular-common": "15.3.0-develop.
|
|
38
|
-
"@progress/kendo-angular-dateinputs": "15.3.0-develop.
|
|
39
|
-
"@progress/kendo-angular-layout": "15.3.0-develop.
|
|
40
|
-
"@progress/kendo-angular-dropdowns": "15.3.0-develop.
|
|
41
|
-
"@progress/kendo-angular-excel-export": "15.3.0-develop.
|
|
42
|
-
"@progress/kendo-angular-icons": "15.3.0-develop.
|
|
43
|
-
"@progress/kendo-angular-inputs": "15.3.0-develop.
|
|
44
|
-
"@progress/kendo-angular-intl": "15.3.0-develop.
|
|
45
|
-
"@progress/kendo-angular-l10n": "15.3.0-develop.
|
|
46
|
-
"@progress/kendo-angular-label": "15.3.0-develop.
|
|
47
|
-
"@progress/kendo-angular-pdf-export": "15.3.0-develop.
|
|
48
|
-
"@progress/kendo-angular-popup": "15.3.0-develop.
|
|
49
|
-
"@progress/kendo-angular-utils": "15.3.0-develop.
|
|
36
|
+
"@progress/kendo-angular-buttons": "15.3.0-develop.6",
|
|
37
|
+
"@progress/kendo-angular-common": "15.3.0-develop.6",
|
|
38
|
+
"@progress/kendo-angular-dateinputs": "15.3.0-develop.6",
|
|
39
|
+
"@progress/kendo-angular-layout": "15.3.0-develop.6",
|
|
40
|
+
"@progress/kendo-angular-dropdowns": "15.3.0-develop.6",
|
|
41
|
+
"@progress/kendo-angular-excel-export": "15.3.0-develop.6",
|
|
42
|
+
"@progress/kendo-angular-icons": "15.3.0-develop.6",
|
|
43
|
+
"@progress/kendo-angular-inputs": "15.3.0-develop.6",
|
|
44
|
+
"@progress/kendo-angular-intl": "15.3.0-develop.6",
|
|
45
|
+
"@progress/kendo-angular-l10n": "15.3.0-develop.6",
|
|
46
|
+
"@progress/kendo-angular-label": "15.3.0-develop.6",
|
|
47
|
+
"@progress/kendo-angular-pdf-export": "15.3.0-develop.6",
|
|
48
|
+
"@progress/kendo-angular-popup": "15.3.0-develop.6",
|
|
49
|
+
"@progress/kendo-angular-utils": "15.3.0-develop.6",
|
|
50
50
|
"rxjs": "^6.5.3 || ^7.0.0",
|
|
51
|
-
"@progress/kendo-angular-spreadsheet": "15.3.0-develop.
|
|
51
|
+
"@progress/kendo-angular-spreadsheet": "15.3.0-develop.6"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"tslib": "^2.3.1",
|
|
55
|
-
"@progress/kendo-angular-schematics": "15.3.0-develop.
|
|
55
|
+
"@progress/kendo-angular-schematics": "15.3.0-develop.6",
|
|
56
56
|
"@progress/kendo-common": "^0.2.0",
|
|
57
57
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
58
58
|
},
|
|
@@ -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': '15.3.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '15.3.0-develop.6',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '15.3.0-develop.
|
|
9
|
+
'@progress/kendo-angular-dialog': '15.3.0-develop.6',
|
|
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': '15.3.0-develop.
|
|
13
|
+
'@progress/kendo-angular-progressbar': '15.3.0-develop.6'
|
|
14
14
|
} });
|
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
16
16
|
}
|