@progress/kendo-angular-navigation 11.2.0-develop.5 → 11.2.0-develop.7

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.
@@ -42,10 +42,10 @@ import * as i0 from "@angular/core";
42
42
  * ```
43
43
  */
44
44
  export declare class BreadCrumbComponent implements OnInit, AfterViewInit, OnDestroy {
45
+ private localization;
45
46
  private el;
46
47
  private cdr;
47
48
  private zone;
48
- private localization;
49
49
  /**
50
50
  * The collection of items that will be rendered in the Breadcrumb.
51
51
  */
@@ -102,7 +102,7 @@ export declare class BreadCrumbComponent implements OnInit, AfterViewInit, OnDes
102
102
  private afterViewInit;
103
103
  private subscriptions;
104
104
  private direction;
105
- constructor(el: ElementRef<HTMLElement>, cdr: ChangeDetectorRef, zone: NgZone, localization: LocalizationService);
105
+ constructor(localization: LocalizationService, el: ElementRef<HTMLElement>, cdr: ChangeDetectorRef, zone: NgZone);
106
106
  ngOnInit(): void;
107
107
  ngAfterViewInit(): void;
108
108
  ngOnDestroy(): void;
@@ -39,7 +39,7 @@ export class BottomNavigationItemComponent {
39
39
  }
40
40
  }
41
41
  BottomNavigationItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomNavigationItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
42
- BottomNavigationItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: BottomNavigationItemComponent, selector: "[kendoBottomNavigationItem]", inputs: { itemTemplate: "itemTemplate", item: "item", index: "index", disabledComponent: "disabledComponent", selectedIdx: "selectedIdx", orientation: "orientation" }, host: { properties: { "attr.aria-disabled": "this.disabledClass", "class.k-disabled": "this.disabledClass", "class.k-hstack": "this.horizontalItemClass", "class.k-vstack": "this.verticalItemClass", "attr.aria-label": "this.label", "attr.tabindex": "this.tabindex", "attr.aria-selected": "this.selectedClass", "class.k-selected": "this.selectedClass" } }, ngImport: i0, template: `
42
+ BottomNavigationItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: BottomNavigationItemComponent, selector: "[kendoBottomNavigationItem]", inputs: { itemTemplate: "itemTemplate", item: "item", index: "index", disabledComponent: "disabledComponent", selectedIdx: "selectedIdx", orientation: "orientation" }, host: { properties: { "attr.aria-disabled": "this.disabledClass", "class.k-disabled": "this.disabledClass", "class.k-hstack": "this.horizontalItemClass", "class.k-vstack": "this.verticalItemClass", "attr.aria-label": "this.label", "attr.tabindex": "this.tabindex", "attr.aria-selected": "this.selectedClass", "attr.aria-current": "this.selectedClass", "class.k-selected": "this.selectedClass" } }, ngImport: i0, template: `
43
43
  <ng-container *ngIf="!itemTemplate">
44
44
  <kendo-icon-wrapper *ngIf="itemIcon"
45
45
  class="k-bottom-nav-item-icon"
@@ -110,6 +110,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
110
110
  }], selectedClass: [{
111
111
  type: HostBinding,
112
112
  args: ['attr.aria-selected']
113
+ }, {
114
+ type: HostBinding,
115
+ args: ['attr.aria-current']
113
116
  }, {
114
117
  type: HostBinding,
115
118
  args: ['class.k-selected']
@@ -2,6 +2,7 @@
2
2
  * Copyright © 2023 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
+ /* eslint-disable @typescript-eslint/no-explicit-any */
5
6
  import { Component, ContentChild, Input, Output, EventEmitter, ViewChild, HostBinding, ElementRef, ChangeDetectorRef, NgZone, ViewChildren, QueryList, isDevMode } from '@angular/core';
6
7
  import { Subscription, ReplaySubject, merge, Subject } from 'rxjs';
7
8
  import { filter, map, share, startWith } from 'rxjs/operators';
@@ -48,11 +49,11 @@ import * as i4 from "@angular/common";
48
49
  * ```
49
50
  */
50
51
  export class BreadCrumbComponent {
51
- constructor(el, cdr, zone, localization) {
52
+ constructor(localization, el, cdr, zone) {
53
+ this.localization = localization;
52
54
  this.el = el;
53
55
  this.cdr = cdr;
54
56
  this.zone = zone;
55
- this.localization = localization;
56
57
  /**
57
58
  * Fires when a Breadcrumb item is clicked. The event will not be fired by disabled items and the last item.
58
59
  */
@@ -184,8 +185,8 @@ export class BreadCrumbComponent {
184
185
  }));
185
186
  }
186
187
  }
187
- BreadCrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
188
- BreadCrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: BreadCrumbComponent, selector: "kendo-breadcrumb", inputs: { items: "items", separatorIcon: "separatorIcon", separatorSVGIcon: "separatorSVGIcon", collapseMode: "collapseMode" }, outputs: { itemClick: "itemClick" }, host: { properties: { "class.k-widget": "this.hostClasses", "class.k-breadcrumb": "this.hostClasses", "class.k-breadcrumb-wrap": "this.wrapMode", "attr.dir": "this.getDir" } }, providers: [
188
+ BreadCrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbComponent, deps: [{ token: i1.LocalizationService }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
189
+ BreadCrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: BreadCrumbComponent, selector: "kendo-breadcrumb", inputs: { items: "items", separatorIcon: "separatorIcon", separatorSVGIcon: "separatorSVGIcon", collapseMode: "collapseMode" }, outputs: { itemClick: "itemClick" }, host: { properties: { "class.k-breadcrumb": "this.hostClasses", "class.k-breadcrumb-wrap": "this.wrapMode", "attr.dir": "this.getDir" } }, providers: [
189
190
  LocalizationService,
190
191
  {
191
192
  provide: L10N_PREFIX,
@@ -258,7 +259,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
258
259
  <kendo-resize-sensor [rateLimit]="1000" #resizeSensor></kendo-resize-sensor>
259
260
  `
260
261
  }]
261
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }, { type: i1.LocalizationService }]; }, propDecorators: { items: [{
262
+ }], ctorParameters: function () { return [{ type: i1.LocalizationService }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }]; }, propDecorators: { items: [{
262
263
  type: Input
263
264
  }], separatorIcon: [{
264
265
  type: Input
@@ -279,11 +280,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
279
280
  args: [BreadCrumbListComponent, { static: true }]
280
281
  }], itemTemplate: [{
281
282
  type: ContentChild,
282
- args: [BreadCrumbItemTemplateDirective, { static: false }]
283
+ args: [BreadCrumbItemTemplateDirective]
283
284
  }], hostClasses: [{
284
- type: HostBinding,
285
- args: ['class.k-widget']
286
- }, {
287
285
  type: HostBinding,
288
286
  args: ['class.k-breadcrumb']
289
287
  }], wrapMode: [{
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-navigation',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1675674467,
13
- version: '11.2.0-develop.5',
12
+ publishDate: 1675695007,
13
+ version: '11.2.0-develop.7',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -26,8 +26,8 @@ const packageMetadata = {
26
26
  name: '@progress/kendo-angular-navigation',
27
27
  productName: 'Kendo UI for Angular',
28
28
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
29
- publishDate: 1675674467,
30
- version: '11.2.0-develop.5',
29
+ publishDate: 1675695007,
30
+ version: '11.2.0-develop.7',
31
31
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
32
32
  };
33
33
 
@@ -811,6 +811,7 @@ const collapseFirst = toggleFirst(false);
811
811
  */
812
812
  const expandFirst = toggleFirst(true);
813
813
 
814
+ /* eslint-disable @typescript-eslint/no-explicit-any */
814
815
  /**
815
816
  * Represents the [Kendo UI Breadcrumb component for Angular]({% slug overview_breadcrumb %}).
816
817
  *
@@ -841,11 +842,11 @@ const expandFirst = toggleFirst(true);
841
842
  * ```
842
843
  */
843
844
  class BreadCrumbComponent {
844
- constructor(el, cdr, zone, localization) {
845
+ constructor(localization, el, cdr, zone) {
846
+ this.localization = localization;
845
847
  this.el = el;
846
848
  this.cdr = cdr;
847
849
  this.zone = zone;
848
- this.localization = localization;
849
850
  /**
850
851
  * Fires when a Breadcrumb item is clicked. The event will not be fired by disabled items and the last item.
851
852
  */
@@ -977,8 +978,8 @@ class BreadCrumbComponent {
977
978
  }));
978
979
  }
979
980
  }
980
- BreadCrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
981
- BreadCrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: BreadCrumbComponent, selector: "kendo-breadcrumb", inputs: { items: "items", separatorIcon: "separatorIcon", separatorSVGIcon: "separatorSVGIcon", collapseMode: "collapseMode" }, outputs: { itemClick: "itemClick" }, host: { properties: { "class.k-widget": "this.hostClasses", "class.k-breadcrumb": "this.hostClasses", "class.k-breadcrumb-wrap": "this.wrapMode", "attr.dir": "this.getDir" } }, providers: [
981
+ BreadCrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbComponent, deps: [{ token: i1.LocalizationService }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
982
+ BreadCrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: BreadCrumbComponent, selector: "kendo-breadcrumb", inputs: { items: "items", separatorIcon: "separatorIcon", separatorSVGIcon: "separatorSVGIcon", collapseMode: "collapseMode" }, outputs: { itemClick: "itemClick" }, host: { properties: { "class.k-breadcrumb": "this.hostClasses", "class.k-breadcrumb-wrap": "this.wrapMode", "attr.dir": "this.getDir" } }, providers: [
982
983
  LocalizationService,
983
984
  {
984
985
  provide: L10N_PREFIX,
@@ -1051,7 +1052,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1051
1052
  <kendo-resize-sensor [rateLimit]="1000" #resizeSensor></kendo-resize-sensor>
1052
1053
  `
1053
1054
  }]
1054
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }, { type: i1.LocalizationService }]; }, propDecorators: { items: [{
1055
+ }], ctorParameters: function () { return [{ type: i1.LocalizationService }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }]; }, propDecorators: { items: [{
1055
1056
  type: Input
1056
1057
  }], separatorIcon: [{
1057
1058
  type: Input
@@ -1072,11 +1073,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1072
1073
  args: [BreadCrumbListComponent, { static: true }]
1073
1074
  }], itemTemplate: [{
1074
1075
  type: ContentChild,
1075
- args: [BreadCrumbItemTemplateDirective, { static: false }]
1076
+ args: [BreadCrumbItemTemplateDirective]
1076
1077
  }], hostClasses: [{
1077
- type: HostBinding,
1078
- args: ['class.k-widget']
1079
- }, {
1080
1078
  type: HostBinding,
1081
1079
  args: ['class.k-breadcrumb']
1082
1080
  }], wrapMode: [{
@@ -1181,7 +1179,7 @@ class BottomNavigationItemComponent {
1181
1179
  }
1182
1180
  }
1183
1181
  BottomNavigationItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomNavigationItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1184
- BottomNavigationItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: BottomNavigationItemComponent, selector: "[kendoBottomNavigationItem]", inputs: { itemTemplate: "itemTemplate", item: "item", index: "index", disabledComponent: "disabledComponent", selectedIdx: "selectedIdx", orientation: "orientation" }, host: { properties: { "attr.aria-disabled": "this.disabledClass", "class.k-disabled": "this.disabledClass", "class.k-hstack": "this.horizontalItemClass", "class.k-vstack": "this.verticalItemClass", "attr.aria-label": "this.label", "attr.tabindex": "this.tabindex", "attr.aria-selected": "this.selectedClass", "class.k-selected": "this.selectedClass" } }, ngImport: i0, template: `
1182
+ BottomNavigationItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: BottomNavigationItemComponent, selector: "[kendoBottomNavigationItem]", inputs: { itemTemplate: "itemTemplate", item: "item", index: "index", disabledComponent: "disabledComponent", selectedIdx: "selectedIdx", orientation: "orientation" }, host: { properties: { "attr.aria-disabled": "this.disabledClass", "class.k-disabled": "this.disabledClass", "class.k-hstack": "this.horizontalItemClass", "class.k-vstack": "this.verticalItemClass", "attr.aria-label": "this.label", "attr.tabindex": "this.tabindex", "attr.aria-selected": "this.selectedClass", "attr.aria-current": "this.selectedClass", "class.k-selected": "this.selectedClass" } }, ngImport: i0, template: `
1185
1183
  <ng-container *ngIf="!itemTemplate">
1186
1184
  <kendo-icon-wrapper *ngIf="itemIcon"
1187
1185
  class="k-bottom-nav-item-icon"
@@ -1252,6 +1250,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1252
1250
  }], selectedClass: [{
1253
1251
  type: HostBinding,
1254
1252
  args: ['attr.aria-selected']
1253
+ }, {
1254
+ type: HostBinding,
1255
+ args: ['attr.aria-current']
1255
1256
  }, {
1256
1257
  type: HostBinding,
1257
1258
  args: ['class.k-selected']
@@ -26,8 +26,8 @@ const packageMetadata = {
26
26
  name: '@progress/kendo-angular-navigation',
27
27
  productName: 'Kendo UI for Angular',
28
28
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
29
- publishDate: 1675674467,
30
- version: '11.2.0-develop.5',
29
+ publishDate: 1675695007,
30
+ version: '11.2.0-develop.7',
31
31
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
32
32
  };
33
33
 
@@ -809,6 +809,7 @@ const collapseFirst = toggleFirst(false);
809
809
  */
810
810
  const expandFirst = toggleFirst(true);
811
811
 
812
+ /* eslint-disable @typescript-eslint/no-explicit-any */
812
813
  /**
813
814
  * Represents the [Kendo UI Breadcrumb component for Angular]({% slug overview_breadcrumb %}).
814
815
  *
@@ -839,11 +840,11 @@ const expandFirst = toggleFirst(true);
839
840
  * ```
840
841
  */
841
842
  class BreadCrumbComponent {
842
- constructor(el, cdr, zone, localization) {
843
+ constructor(localization, el, cdr, zone) {
844
+ this.localization = localization;
843
845
  this.el = el;
844
846
  this.cdr = cdr;
845
847
  this.zone = zone;
846
- this.localization = localization;
847
848
  /**
848
849
  * Fires when a Breadcrumb item is clicked. The event will not be fired by disabled items and the last item.
849
850
  */
@@ -975,8 +976,8 @@ class BreadCrumbComponent {
975
976
  }));
976
977
  }
977
978
  }
978
- BreadCrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
979
- BreadCrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: BreadCrumbComponent, selector: "kendo-breadcrumb", inputs: { items: "items", separatorIcon: "separatorIcon", separatorSVGIcon: "separatorSVGIcon", collapseMode: "collapseMode" }, outputs: { itemClick: "itemClick" }, host: { properties: { "class.k-widget": "this.hostClasses", "class.k-breadcrumb": "this.hostClasses", "class.k-breadcrumb-wrap": "this.wrapMode", "attr.dir": "this.getDir" } }, providers: [
979
+ BreadCrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbComponent, deps: [{ token: i1.LocalizationService }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
980
+ BreadCrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: BreadCrumbComponent, selector: "kendo-breadcrumb", inputs: { items: "items", separatorIcon: "separatorIcon", separatorSVGIcon: "separatorSVGIcon", collapseMode: "collapseMode" }, outputs: { itemClick: "itemClick" }, host: { properties: { "class.k-breadcrumb": "this.hostClasses", "class.k-breadcrumb-wrap": "this.wrapMode", "attr.dir": "this.getDir" } }, providers: [
980
981
  LocalizationService,
981
982
  {
982
983
  provide: L10N_PREFIX,
@@ -1049,7 +1050,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1049
1050
  <kendo-resize-sensor [rateLimit]="1000" #resizeSensor></kendo-resize-sensor>
1050
1051
  `
1051
1052
  }]
1052
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }, { type: i1.LocalizationService }]; }, propDecorators: { items: [{
1053
+ }], ctorParameters: function () { return [{ type: i1.LocalizationService }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }]; }, propDecorators: { items: [{
1053
1054
  type: Input
1054
1055
  }], separatorIcon: [{
1055
1056
  type: Input
@@ -1070,11 +1071,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1070
1071
  args: [BreadCrumbListComponent, { static: true }]
1071
1072
  }], itemTemplate: [{
1072
1073
  type: ContentChild,
1073
- args: [BreadCrumbItemTemplateDirective, { static: false }]
1074
+ args: [BreadCrumbItemTemplateDirective]
1074
1075
  }], hostClasses: [{
1075
- type: HostBinding,
1076
- args: ['class.k-widget']
1077
- }, {
1078
1076
  type: HostBinding,
1079
1077
  args: ['class.k-breadcrumb']
1080
1078
  }], wrapMode: [{
@@ -1200,7 +1198,7 @@ class BottomNavigationItemComponent {
1200
1198
  }
1201
1199
  }
1202
1200
  BottomNavigationItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomNavigationItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1203
- BottomNavigationItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: BottomNavigationItemComponent, selector: "[kendoBottomNavigationItem]", inputs: { itemTemplate: "itemTemplate", item: "item", index: "index", disabledComponent: "disabledComponent", selectedIdx: "selectedIdx", orientation: "orientation" }, host: { properties: { "attr.aria-disabled": "this.disabledClass", "class.k-disabled": "this.disabledClass", "class.k-hstack": "this.horizontalItemClass", "class.k-vstack": "this.verticalItemClass", "attr.aria-label": "this.label", "attr.tabindex": "this.tabindex", "attr.aria-selected": "this.selectedClass", "class.k-selected": "this.selectedClass" } }, ngImport: i0, template: `
1201
+ BottomNavigationItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: BottomNavigationItemComponent, selector: "[kendoBottomNavigationItem]", inputs: { itemTemplate: "itemTemplate", item: "item", index: "index", disabledComponent: "disabledComponent", selectedIdx: "selectedIdx", orientation: "orientation" }, host: { properties: { "attr.aria-disabled": "this.disabledClass", "class.k-disabled": "this.disabledClass", "class.k-hstack": "this.horizontalItemClass", "class.k-vstack": "this.verticalItemClass", "attr.aria-label": "this.label", "attr.tabindex": "this.tabindex", "attr.aria-selected": "this.selectedClass", "attr.aria-current": "this.selectedClass", "class.k-selected": "this.selectedClass" } }, ngImport: i0, template: `
1204
1202
  <ng-container *ngIf="!itemTemplate">
1205
1203
  <kendo-icon-wrapper *ngIf="itemIcon"
1206
1204
  class="k-bottom-nav-item-icon"
@@ -1271,6 +1269,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1271
1269
  }], selectedClass: [{
1272
1270
  type: HostBinding,
1273
1271
  args: ['attr.aria-selected']
1272
+ }, {
1273
+ type: HostBinding,
1274
+ args: ['attr.aria-current']
1274
1275
  }, {
1275
1276
  type: HostBinding,
1276
1277
  args: ['class.k-selected']
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-navigation",
3
- "version": "11.2.0-develop.5",
3
+ "version": "11.2.0-develop.7",
4
4
  "description": "Kendo UI Navigation for Angular",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -21,14 +21,14 @@
21
21
  "@angular/core": "13 - 15",
22
22
  "@angular/platform-browser": "13 - 15",
23
23
  "@progress/kendo-licensing": "^1.0.2",
24
- "@progress/kendo-angular-common": "11.2.0-develop.5",
25
- "@progress/kendo-angular-icons": "11.2.0-develop.5",
26
- "@progress/kendo-angular-l10n": "11.2.0-develop.5",
24
+ "@progress/kendo-angular-common": "11.2.0-develop.7",
25
+ "@progress/kendo-angular-icons": "11.2.0-develop.7",
26
+ "@progress/kendo-angular-l10n": "11.2.0-develop.7",
27
27
  "rxjs": "^6.5.3 || ^7.0.0"
28
28
  },
29
29
  "dependencies": {
30
30
  "tslib": "^2.3.1",
31
- "@progress/kendo-angular-schematics": "11.2.0-develop.5"
31
+ "@progress/kendo-angular-schematics": "11.2.0-develop.7"
32
32
  },
33
33
  "schematics": "./schematics/collection.json",
34
34
  "module": "fesm2015/progress-kendo-angular-navigation.mjs",