@progress/kendo-angular-grid 19.3.0-develop.1 → 19.3.0-develop.3

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.
@@ -13,6 +13,7 @@ export declare class StatusBarComponent {
13
13
  private aggregateService;
14
14
  hostClasses: boolean;
15
15
  get isStatusBarTemplate(): string;
16
+ hostAriaLive: string;
16
17
  statusBarTemplate: StatusBarTemplateDirective;
17
18
  constructor(aggregateService: CellSelectionAggregateService);
18
19
  ngOnInit(): void;
@@ -17,6 +17,7 @@ export class StatusBarComponent {
17
17
  get isStatusBarTemplate() {
18
18
  return this.statusBarTemplate ? '' : 'none';
19
19
  }
20
+ hostAriaLive = 'polite';
20
21
  statusBarTemplate;
21
22
  constructor(aggregateService) {
22
23
  this.aggregateService = aggregateService;
@@ -28,7 +29,7 @@ export class StatusBarComponent {
28
29
  return this.aggregateService.aggregates;
29
30
  }
30
31
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StatusBarComponent, deps: [{ token: i1.CellSelectionAggregateService }], target: i0.ɵɵFactoryTarget.Component });
31
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StatusBarComponent, isStandalone: true, selector: "kendo-grid-status-bar", inputs: { statusBarTemplate: "statusBarTemplate" }, host: { properties: { "class.k-selection-aggregates": "this.hostClasses", "class.k-grid-selection-aggregates": "this.hostClasses", "style.display": "this.isStatusBarTemplate" } }, ngImport: i0, template: `
32
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StatusBarComponent, isStandalone: true, selector: "kendo-grid-status-bar", inputs: { statusBarTemplate: "statusBarTemplate" }, host: { properties: { "class.k-selection-aggregates": "this.hostClasses", "class.k-grid-selection-aggregates": "this.hostClasses", "style.display": "this.isStatusBarTemplate", "attr.aria-live": "this.hostAriaLive" } }, ngImport: i0, template: `
32
33
  <ng-template
33
34
  *ngIf="statusBarTemplate"
34
35
  [ngTemplateOutlet]="statusBarTemplate?.templateRef"
@@ -59,6 +60,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
59
60
  }], isStatusBarTemplate: [{
60
61
  type: HostBinding,
61
62
  args: ['style.display']
63
+ }], hostAriaLive: [{
64
+ type: HostBinding,
65
+ args: ['attr.aria-live']
62
66
  }], statusBarTemplate: [{
63
67
  type: Input
64
68
  }] } });
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1751896575,
14
- version: '19.3.0-develop.1',
13
+ publishDate: 1751985061,
14
+ version: '19.3.0-develop.3',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -39,7 +39,7 @@ export class GridToolbarFocusableDirective {
39
39
  this.ctx = ctx;
40
40
  }
41
41
  ngAfterViewInit() {
42
- if (!isDocumentAvailable() || !this.toolbarPosition) {
42
+ if (!isDocumentAvailable() || !this.toolbarPosition || !this.isToolbarNavigable) {
43
43
  return;
44
44
  }
45
45
  this.ctx[`${this.toolbarPosition}ToolbarNavigation`]?.navigableElements.push(this.element);
@@ -53,6 +53,15 @@ export class GridToolbarFocusableDirective {
53
53
  this.ctx[`${this.toolbarPosition}ToolbarNavigation`].navigableElements = elements.filter(el => el !== this.element);
54
54
  this.ctx[`${this.toolbarPosition}ToolbarNavigation`].notify();
55
55
  }
56
+ get isToolbarNavigable() {
57
+ if (typeof this.ctx.grid.navigable === 'boolean') {
58
+ return this.ctx.grid.navigable;
59
+ }
60
+ if (Array.isArray(this.ctx.grid.navigable)) {
61
+ return this.ctx.grid.navigable.includes('toolbar');
62
+ }
63
+ return false;
64
+ }
56
65
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GridToolbarFocusableDirective, deps: [{ token: i0.ElementRef }, { token: i1.ContextService }], target: i0.ɵɵFactoryTarget.Directive });
57
66
  static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: GridToolbarFocusableDirective, isStandalone: true, selector: "\n [kendoGridToolbarFocusable],\n [kendoGridAddCommand],\n [kendoGridCancelCommand],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridExcelCommand],\n [kendoGridPDFCommand]\n ", ngImport: i0 });
58
67
  }
@@ -21226,8 +21226,8 @@ const packageMetadata = {
21226
21226
  productName: 'Kendo UI for Angular',
21227
21227
  productCode: 'KENDOUIANGULAR',
21228
21228
  productCodes: ['KENDOUIANGULAR'],
21229
- publishDate: 1751896575,
21230
- version: '19.3.0-develop.1',
21229
+ publishDate: 1751985061,
21230
+ version: '19.3.0-develop.3',
21231
21231
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
21232
21232
  };
21233
21233
 
@@ -22709,6 +22709,7 @@ class StatusBarComponent {
22709
22709
  get isStatusBarTemplate() {
22710
22710
  return this.statusBarTemplate ? '' : 'none';
22711
22711
  }
22712
+ hostAriaLive = 'polite';
22712
22713
  statusBarTemplate;
22713
22714
  constructor(aggregateService) {
22714
22715
  this.aggregateService = aggregateService;
@@ -22720,7 +22721,7 @@ class StatusBarComponent {
22720
22721
  return this.aggregateService.aggregates;
22721
22722
  }
22722
22723
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StatusBarComponent, deps: [{ token: CellSelectionAggregateService }], target: i0.ɵɵFactoryTarget.Component });
22723
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StatusBarComponent, isStandalone: true, selector: "kendo-grid-status-bar", inputs: { statusBarTemplate: "statusBarTemplate" }, host: { properties: { "class.k-selection-aggregates": "this.hostClasses", "class.k-grid-selection-aggregates": "this.hostClasses", "style.display": "this.isStatusBarTemplate" } }, ngImport: i0, template: `
22724
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StatusBarComponent, isStandalone: true, selector: "kendo-grid-status-bar", inputs: { statusBarTemplate: "statusBarTemplate" }, host: { properties: { "class.k-selection-aggregates": "this.hostClasses", "class.k-grid-selection-aggregates": "this.hostClasses", "style.display": "this.isStatusBarTemplate", "attr.aria-live": "this.hostAriaLive" } }, ngImport: i0, template: `
22724
22725
  <ng-template
22725
22726
  *ngIf="statusBarTemplate"
22726
22727
  [ngTemplateOutlet]="statusBarTemplate?.templateRef"
@@ -22751,6 +22752,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
22751
22752
  }], isStatusBarTemplate: [{
22752
22753
  type: HostBinding,
22753
22754
  args: ['style.display']
22755
+ }], hostAriaLive: [{
22756
+ type: HostBinding,
22757
+ args: ['attr.aria-live']
22754
22758
  }], statusBarTemplate: [{
22755
22759
  type: Input
22756
22760
  }] } });
@@ -33301,7 +33305,7 @@ class GridToolbarFocusableDirective {
33301
33305
  this.ctx = ctx;
33302
33306
  }
33303
33307
  ngAfterViewInit() {
33304
- if (!isDocumentAvailable() || !this.toolbarPosition) {
33308
+ if (!isDocumentAvailable() || !this.toolbarPosition || !this.isToolbarNavigable) {
33305
33309
  return;
33306
33310
  }
33307
33311
  this.ctx[`${this.toolbarPosition}ToolbarNavigation`]?.navigableElements.push(this.element);
@@ -33315,6 +33319,15 @@ class GridToolbarFocusableDirective {
33315
33319
  this.ctx[`${this.toolbarPosition}ToolbarNavigation`].navigableElements = elements.filter(el => el !== this.element);
33316
33320
  this.ctx[`${this.toolbarPosition}ToolbarNavigation`].notify();
33317
33321
  }
33322
+ get isToolbarNavigable() {
33323
+ if (typeof this.ctx.grid.navigable === 'boolean') {
33324
+ return this.ctx.grid.navigable;
33325
+ }
33326
+ if (Array.isArray(this.ctx.grid.navigable)) {
33327
+ return this.ctx.grid.navigable.includes('toolbar');
33328
+ }
33329
+ return false;
33330
+ }
33318
33331
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GridToolbarFocusableDirective, deps: [{ token: i0.ElementRef }, { token: ContextService }], target: i0.ɵɵFactoryTarget.Directive });
33319
33332
  static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: GridToolbarFocusableDirective, isStandalone: true, selector: "\n [kendoGridToolbarFocusable],\n [kendoGridAddCommand],\n [kendoGridCancelCommand],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridExcelCommand],\n [kendoGridPDFCommand]\n ", ngImport: i0 });
33320
33333
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-grid",
3
- "version": "19.3.0-develop.1",
3
+ "version": "19.3.0-develop.3",
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": 1751896575,
29
+ "publishDate": 1751985061,
30
30
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
31
31
  }
32
32
  },
@@ -39,28 +39,28 @@
39
39
  "@progress/kendo-data-query": "^1.0.0",
40
40
  "@progress/kendo-drawing": "^1.21.0",
41
41
  "@progress/kendo-licensing": "^1.5.0",
42
- "@progress/kendo-angular-buttons": "19.3.0-develop.1",
43
- "@progress/kendo-angular-common": "19.3.0-develop.1",
44
- "@progress/kendo-angular-dateinputs": "19.3.0-develop.1",
45
- "@progress/kendo-angular-layout": "19.3.0-develop.1",
46
- "@progress/kendo-angular-navigation": "19.3.0-develop.1",
47
- "@progress/kendo-angular-dropdowns": "19.3.0-develop.1",
48
- "@progress/kendo-angular-excel-export": "19.3.0-develop.1",
49
- "@progress/kendo-angular-icons": "19.3.0-develop.1",
50
- "@progress/kendo-angular-inputs": "19.3.0-develop.1",
51
- "@progress/kendo-angular-intl": "19.3.0-develop.1",
52
- "@progress/kendo-angular-l10n": "19.3.0-develop.1",
53
- "@progress/kendo-angular-label": "19.3.0-develop.1",
54
- "@progress/kendo-angular-pager": "19.3.0-develop.1",
55
- "@progress/kendo-angular-pdf-export": "19.3.0-develop.1",
56
- "@progress/kendo-angular-popup": "19.3.0-develop.1",
57
- "@progress/kendo-angular-toolbar": "19.3.0-develop.1",
58
- "@progress/kendo-angular-utils": "19.3.0-develop.1",
42
+ "@progress/kendo-angular-buttons": "19.3.0-develop.3",
43
+ "@progress/kendo-angular-common": "19.3.0-develop.3",
44
+ "@progress/kendo-angular-dateinputs": "19.3.0-develop.3",
45
+ "@progress/kendo-angular-layout": "19.3.0-develop.3",
46
+ "@progress/kendo-angular-navigation": "19.3.0-develop.3",
47
+ "@progress/kendo-angular-dropdowns": "19.3.0-develop.3",
48
+ "@progress/kendo-angular-excel-export": "19.3.0-develop.3",
49
+ "@progress/kendo-angular-icons": "19.3.0-develop.3",
50
+ "@progress/kendo-angular-inputs": "19.3.0-develop.3",
51
+ "@progress/kendo-angular-intl": "19.3.0-develop.3",
52
+ "@progress/kendo-angular-l10n": "19.3.0-develop.3",
53
+ "@progress/kendo-angular-label": "19.3.0-develop.3",
54
+ "@progress/kendo-angular-pager": "19.3.0-develop.3",
55
+ "@progress/kendo-angular-pdf-export": "19.3.0-develop.3",
56
+ "@progress/kendo-angular-popup": "19.3.0-develop.3",
57
+ "@progress/kendo-angular-toolbar": "19.3.0-develop.3",
58
+ "@progress/kendo-angular-utils": "19.3.0-develop.3",
59
59
  "rxjs": "^6.5.3 || ^7.0.0"
60
60
  },
61
61
  "dependencies": {
62
62
  "tslib": "^2.3.1",
63
- "@progress/kendo-angular-schematics": "19.3.0-develop.1",
63
+ "@progress/kendo-angular-schematics": "19.3.0-develop.3",
64
64
  "@progress/kendo-common": "^1.0.1",
65
65
  "@progress/kendo-file-saver": "^1.0.0"
66
66
  },
@@ -32,6 +32,7 @@ export declare class GridToolbarFocusableDirective {
32
32
  constructor(host: ElementRef, ctx: ContextService);
33
33
  ngAfterViewInit(): void;
34
34
  ngOnDestroy(): void;
35
+ private get isToolbarNavigable();
35
36
  static ɵfac: i0.ɵɵFactoryDeclaration<GridToolbarFocusableDirective, never>;
36
37
  static ɵdir: i0.ɵɵDirectiveDeclaration<GridToolbarFocusableDirective, " [kendoGridToolbarFocusable], [kendoGridAddCommand], [kendoGridCancelCommand], [kendoGridEditCommand], [kendoGridRemoveCommand], [kendoGridSaveCommand], [kendoGridExcelCommand], [kendoGridPDFCommand] ", never, {}, {}, never, never, true, never>;
37
38
  }
@@ -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.1',
8
- '@progress/kendo-angular-navigation': '19.3.0-develop.1',
7
+ '@progress/kendo-angular-treeview': '19.3.0-develop.3',
8
+ '@progress/kendo-angular-navigation': '19.3.0-develop.3',
9
9
  // peer dependency of kendo-angular-inputs
10
- '@progress/kendo-angular-dialog': '19.3.0-develop.1',
10
+ '@progress/kendo-angular-dialog': '19.3.0-develop.3',
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.1'
14
+ '@progress/kendo-angular-progressbar': '19.3.0-develop.3'
15
15
  } });
16
16
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
17
17
  }