@progress/kendo-angular-navigation 12.0.0-develop.5 → 12.0.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/breadcrumb/breadcrumb.component.d.ts +1 -0
- package/esm2020/bottomnavigation/bottomnavigation-item.component.mjs +1 -4
- package/esm2020/breadcrumb/breadcrumb-item.component.mjs +4 -2
- package/esm2020/breadcrumb/breadcrumb.component.mjs +6 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-navigation.mjs +13 -10
- package/fesm2020/progress-kendo-angular-navigation.mjs +13 -10
- package/package.json +5 -5
|
@@ -93,6 +93,7 @@ export declare class BreadCrumbComponent implements OnInit, AfterViewInit, OnDes
|
|
|
93
93
|
itemTemplate: BreadCrumbItemTemplateDirective;
|
|
94
94
|
hostClasses: boolean;
|
|
95
95
|
get wrapMode(): boolean;
|
|
96
|
+
hostAriaLabel: string;
|
|
96
97
|
get getDir(): string;
|
|
97
98
|
itemsData$: Observable<BreadCrumbItemModel[]>;
|
|
98
99
|
firstItem$: Observable<BreadCrumbItemModel[]>;
|
|
@@ -39,7 +39,7 @@ export class BottomNavigationItemComponent {
|
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
41
|
BottomNavigationItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BottomNavigationItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
42
|
-
BottomNavigationItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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-
|
|
42
|
+
BottomNavigationItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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-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"
|
|
@@ -104,9 +104,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
104
104
|
type: HostBinding,
|
|
105
105
|
args: ['attr.tabindex']
|
|
106
106
|
}], selectedClass: [{
|
|
107
|
-
type: HostBinding,
|
|
108
|
-
args: ['attr.aria-selected']
|
|
109
|
-
}, {
|
|
110
107
|
type: HostBinding,
|
|
111
108
|
args: ['attr.aria-current']
|
|
112
109
|
}, {
|
|
@@ -63,7 +63,8 @@ BreadCrumbItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
63
63
|
}"
|
|
64
64
|
[title]="item.data.title || ''"
|
|
65
65
|
[tabindex]="disabled ? -1 : 0"
|
|
66
|
-
[attr.aria-
|
|
66
|
+
[attr.aria-disabled]="disabled"
|
|
67
|
+
[attr.aria-current]="item.context.isLast ? 'page' : null"
|
|
67
68
|
role="link"
|
|
68
69
|
class="k-cursor-pointer k-flex-none"
|
|
69
70
|
>
|
|
@@ -116,7 +117,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
116
117
|
}"
|
|
117
118
|
[title]="item.data.title || ''"
|
|
118
119
|
[tabindex]="disabled ? -1 : 0"
|
|
119
|
-
[attr.aria-
|
|
120
|
+
[attr.aria-disabled]="disabled"
|
|
121
|
+
[attr.aria-current]="item.context.isLast ? 'page' : null"
|
|
120
122
|
role="link"
|
|
121
123
|
class="k-cursor-pointer k-flex-none"
|
|
122
124
|
>
|
|
@@ -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-inferrable-types */
|
|
5
6
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
6
7
|
import { Component, ContentChild, Input, Output, EventEmitter, ViewChild, HostBinding, ElementRef, ChangeDetectorRef, NgZone, ViewChildren, QueryList, isDevMode } from '@angular/core';
|
|
7
8
|
import { Subscription, ReplaySubject, merge, Subject } from 'rxjs';
|
|
@@ -59,6 +60,7 @@ export class BreadCrumbComponent {
|
|
|
59
60
|
*/
|
|
60
61
|
this.itemClick = new EventEmitter();
|
|
61
62
|
this.hostClasses = true;
|
|
63
|
+
this.hostAriaLabel = 'Breadcrumb';
|
|
62
64
|
this._items = [];
|
|
63
65
|
this._collapseMode = 'auto';
|
|
64
66
|
this.updateItems = new ReplaySubject();
|
|
@@ -186,7 +188,7 @@ export class BreadCrumbComponent {
|
|
|
186
188
|
}
|
|
187
189
|
}
|
|
188
190
|
BreadCrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", 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.12", 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: [
|
|
191
|
+
BreadCrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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.aria-label": "this.hostAriaLabel", "attr.dir": "this.getDir" } }, providers: [
|
|
190
192
|
LocalizationService,
|
|
191
193
|
{
|
|
192
194
|
provide: L10N_PREFIX,
|
|
@@ -287,6 +289,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
287
289
|
}], wrapMode: [{
|
|
288
290
|
type: HostBinding,
|
|
289
291
|
args: ['class.k-breadcrumb-wrap']
|
|
292
|
+
}], hostAriaLabel: [{
|
|
293
|
+
type: HostBinding,
|
|
294
|
+
args: ['attr.aria-label']
|
|
290
295
|
}], getDir: [{
|
|
291
296
|
type: HostBinding,
|
|
292
297
|
args: ['attr.dir']
|
|
@@ -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:
|
|
13
|
-
version: '12.0.0-develop.
|
|
12
|
+
publishDate: 1681289679,
|
|
13
|
+
version: '12.0.0-develop.6',
|
|
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:
|
|
30
|
-
version: '12.0.0-develop.
|
|
29
|
+
publishDate: 1681289679,
|
|
30
|
+
version: '12.0.0-develop.6',
|
|
31
31
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
32
32
|
};
|
|
33
33
|
|
|
@@ -480,7 +480,8 @@ BreadCrumbItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
480
480
|
}"
|
|
481
481
|
[title]="item.data.title || ''"
|
|
482
482
|
[tabindex]="disabled ? -1 : 0"
|
|
483
|
-
[attr.aria-
|
|
483
|
+
[attr.aria-disabled]="disabled"
|
|
484
|
+
[attr.aria-current]="item.context.isLast ? 'page' : null"
|
|
484
485
|
role="link"
|
|
485
486
|
class="k-cursor-pointer k-flex-none"
|
|
486
487
|
>
|
|
@@ -533,7 +534,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
533
534
|
}"
|
|
534
535
|
[title]="item.data.title || ''"
|
|
535
536
|
[tabindex]="disabled ? -1 : 0"
|
|
536
|
-
[attr.aria-
|
|
537
|
+
[attr.aria-disabled]="disabled"
|
|
538
|
+
[attr.aria-current]="item.context.isLast ? 'page' : null"
|
|
537
539
|
role="link"
|
|
538
540
|
class="k-cursor-pointer k-flex-none"
|
|
539
541
|
>
|
|
@@ -795,7 +797,7 @@ const collapseFirst = toggleFirst(false);
|
|
|
795
797
|
*/
|
|
796
798
|
const expandFirst = toggleFirst(true);
|
|
797
799
|
|
|
798
|
-
/* eslint-disable @typescript-eslint/no-
|
|
800
|
+
/* eslint-disable @typescript-eslint/no-inferrable-types */
|
|
799
801
|
/**
|
|
800
802
|
* Represents the [Kendo UI Breadcrumb component for Angular]({% slug overview_breadcrumb %}).
|
|
801
803
|
*
|
|
@@ -836,6 +838,7 @@ class BreadCrumbComponent {
|
|
|
836
838
|
*/
|
|
837
839
|
this.itemClick = new EventEmitter();
|
|
838
840
|
this.hostClasses = true;
|
|
841
|
+
this.hostAriaLabel = 'Breadcrumb';
|
|
839
842
|
this._items = [];
|
|
840
843
|
this._collapseMode = 'auto';
|
|
841
844
|
this.updateItems = new ReplaySubject();
|
|
@@ -963,7 +966,7 @@ class BreadCrumbComponent {
|
|
|
963
966
|
}
|
|
964
967
|
}
|
|
965
968
|
BreadCrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BreadCrumbComponent, deps: [{ token: i1.LocalizationService }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
966
|
-
BreadCrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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: [
|
|
969
|
+
BreadCrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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.aria-label": "this.hostAriaLabel", "attr.dir": "this.getDir" } }, providers: [
|
|
967
970
|
LocalizationService,
|
|
968
971
|
{
|
|
969
972
|
provide: L10N_PREFIX,
|
|
@@ -1064,6 +1067,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1064
1067
|
}], wrapMode: [{
|
|
1065
1068
|
type: HostBinding,
|
|
1066
1069
|
args: ['class.k-breadcrumb-wrap']
|
|
1070
|
+
}], hostAriaLabel: [{
|
|
1071
|
+
type: HostBinding,
|
|
1072
|
+
args: ['attr.aria-label']
|
|
1067
1073
|
}], getDir: [{
|
|
1068
1074
|
type: HostBinding,
|
|
1069
1075
|
args: ['attr.dir']
|
|
@@ -1163,7 +1169,7 @@ class BottomNavigationItemComponent {
|
|
|
1163
1169
|
}
|
|
1164
1170
|
}
|
|
1165
1171
|
BottomNavigationItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BottomNavigationItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1166
|
-
BottomNavigationItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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-
|
|
1172
|
+
BottomNavigationItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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-current": "this.selectedClass", "class.k-selected": "this.selectedClass" } }, ngImport: i0, template: `
|
|
1167
1173
|
<ng-container *ngIf="!itemTemplate">
|
|
1168
1174
|
<kendo-icon-wrapper *ngIf="itemIcon"
|
|
1169
1175
|
class="k-bottom-nav-item-icon"
|
|
@@ -1228,9 +1234,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1228
1234
|
type: HostBinding,
|
|
1229
1235
|
args: ['attr.tabindex']
|
|
1230
1236
|
}], selectedClass: [{
|
|
1231
|
-
type: HostBinding,
|
|
1232
|
-
args: ['attr.aria-selected']
|
|
1233
|
-
}, {
|
|
1234
1237
|
type: HostBinding,
|
|
1235
1238
|
args: ['attr.aria-current']
|
|
1236
1239
|
}, {
|
|
@@ -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:
|
|
30
|
-
version: '12.0.0-develop.
|
|
29
|
+
publishDate: 1681289679,
|
|
30
|
+
version: '12.0.0-develop.6',
|
|
31
31
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
32
32
|
};
|
|
33
33
|
|
|
@@ -478,7 +478,8 @@ BreadCrumbItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
478
478
|
}"
|
|
479
479
|
[title]="item.data.title || ''"
|
|
480
480
|
[tabindex]="disabled ? -1 : 0"
|
|
481
|
-
[attr.aria-
|
|
481
|
+
[attr.aria-disabled]="disabled"
|
|
482
|
+
[attr.aria-current]="item.context.isLast ? 'page' : null"
|
|
482
483
|
role="link"
|
|
483
484
|
class="k-cursor-pointer k-flex-none"
|
|
484
485
|
>
|
|
@@ -531,7 +532,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
531
532
|
}"
|
|
532
533
|
[title]="item.data.title || ''"
|
|
533
534
|
[tabindex]="disabled ? -1 : 0"
|
|
534
|
-
[attr.aria-
|
|
535
|
+
[attr.aria-disabled]="disabled"
|
|
536
|
+
[attr.aria-current]="item.context.isLast ? 'page' : null"
|
|
535
537
|
role="link"
|
|
536
538
|
class="k-cursor-pointer k-flex-none"
|
|
537
539
|
>
|
|
@@ -793,7 +795,7 @@ const collapseFirst = toggleFirst(false);
|
|
|
793
795
|
*/
|
|
794
796
|
const expandFirst = toggleFirst(true);
|
|
795
797
|
|
|
796
|
-
/* eslint-disable @typescript-eslint/no-
|
|
798
|
+
/* eslint-disable @typescript-eslint/no-inferrable-types */
|
|
797
799
|
/**
|
|
798
800
|
* Represents the [Kendo UI Breadcrumb component for Angular]({% slug overview_breadcrumb %}).
|
|
799
801
|
*
|
|
@@ -834,6 +836,7 @@ class BreadCrumbComponent {
|
|
|
834
836
|
*/
|
|
835
837
|
this.itemClick = new EventEmitter();
|
|
836
838
|
this.hostClasses = true;
|
|
839
|
+
this.hostAriaLabel = 'Breadcrumb';
|
|
837
840
|
this._items = [];
|
|
838
841
|
this._collapseMode = 'auto';
|
|
839
842
|
this.updateItems = new ReplaySubject();
|
|
@@ -961,7 +964,7 @@ class BreadCrumbComponent {
|
|
|
961
964
|
}
|
|
962
965
|
}
|
|
963
966
|
BreadCrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BreadCrumbComponent, deps: [{ token: i1.LocalizationService }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
964
|
-
BreadCrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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: [
|
|
967
|
+
BreadCrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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.aria-label": "this.hostAriaLabel", "attr.dir": "this.getDir" } }, providers: [
|
|
965
968
|
LocalizationService,
|
|
966
969
|
{
|
|
967
970
|
provide: L10N_PREFIX,
|
|
@@ -1062,6 +1065,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1062
1065
|
}], wrapMode: [{
|
|
1063
1066
|
type: HostBinding,
|
|
1064
1067
|
args: ['class.k-breadcrumb-wrap']
|
|
1068
|
+
}], hostAriaLabel: [{
|
|
1069
|
+
type: HostBinding,
|
|
1070
|
+
args: ['attr.aria-label']
|
|
1065
1071
|
}], getDir: [{
|
|
1066
1072
|
type: HostBinding,
|
|
1067
1073
|
args: ['attr.dir']
|
|
@@ -1182,7 +1188,7 @@ class BottomNavigationItemComponent {
|
|
|
1182
1188
|
}
|
|
1183
1189
|
}
|
|
1184
1190
|
BottomNavigationItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BottomNavigationItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1185
|
-
BottomNavigationItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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-
|
|
1191
|
+
BottomNavigationItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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-current": "this.selectedClass", "class.k-selected": "this.selectedClass" } }, ngImport: i0, template: `
|
|
1186
1192
|
<ng-container *ngIf="!itemTemplate">
|
|
1187
1193
|
<kendo-icon-wrapper *ngIf="itemIcon"
|
|
1188
1194
|
class="k-bottom-nav-item-icon"
|
|
@@ -1247,9 +1253,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1247
1253
|
type: HostBinding,
|
|
1248
1254
|
args: ['attr.tabindex']
|
|
1249
1255
|
}], selectedClass: [{
|
|
1250
|
-
type: HostBinding,
|
|
1251
|
-
args: ['attr.aria-selected']
|
|
1252
|
-
}, {
|
|
1253
1256
|
type: HostBinding,
|
|
1254
1257
|
args: ['attr.aria-current']
|
|
1255
1258
|
}, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-navigation",
|
|
3
|
-
"version": "12.0.0-develop.
|
|
3
|
+
"version": "12.0.0-develop.6",
|
|
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": "12.0.0-develop.
|
|
25
|
-
"@progress/kendo-angular-icons": "12.0.0-develop.
|
|
26
|
-
"@progress/kendo-angular-l10n": "12.0.0-develop.
|
|
24
|
+
"@progress/kendo-angular-common": "12.0.0-develop.6",
|
|
25
|
+
"@progress/kendo-angular-icons": "12.0.0-develop.6",
|
|
26
|
+
"@progress/kendo-angular-l10n": "12.0.0-develop.6",
|
|
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": "12.0.0-develop.
|
|
31
|
+
"@progress/kendo-angular-schematics": "12.0.0-develop.6"
|
|
32
32
|
},
|
|
33
33
|
"schematics": "./schematics/collection.json",
|
|
34
34
|
"module": "fesm2015/progress-kendo-angular-navigation.mjs",
|