@progress/kendo-angular-menu 16.6.1-develop.1 → 16.6.1-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.
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-menu',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1722938727,
13
- version: '16.6.1-develop.1',
12
+ publishDate: 1722952496,
13
+ version: '16.6.1-develop.3',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -295,9 +295,6 @@ export class ItemComponent {
295
295
  get label() {
296
296
  return this.item.text ? this.item.text : null;
297
297
  }
298
- get activeId() {
299
- return this.index === this.navigation.activeIndex ? '0' : '-1';
300
- }
301
298
  get popupSettings() {
302
299
  const settings = this.rtl ? POPUP_SETTINGS_RTL : POPUP_SETTINGS;
303
300
  return this.horizontal ? settings.horizontal : settings.vertical;
@@ -357,6 +354,7 @@ export class ItemComponent {
357
354
  if (this.hasContent) {
358
355
  this.setAttribute('aria-expanded', this.opened.toString());
359
356
  }
357
+ this.index === this.navigation.activeIndex ? this.setAttribute('tabindex', '0') : this.setAttribute('tabindex', '-1');
360
358
  }
361
359
  ngOnDestroy() {
362
360
  this.itemsService.remove(this);
@@ -437,7 +435,7 @@ export class ItemComponent {
437
435
  }
438
436
  }
439
437
  ItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ItemComponent, deps: [{ token: i1.ItemsService }, { token: i4.NavigationService }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i5.PopupService }, { token: i0.ElementRef }, { token: i6.ContextMenuService, optional: true }], target: i0.ɵɵFactoryTarget.Component });
440
- ItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ItemComponent, isStandalone: true, selector: "[kendoMenuItem]", inputs: { appendTo: "appendTo", item: "item", level: "level", index: "index", siblingIndex: "siblingIndex", animate: "animate", size: "size", vertical: "vertical", rtl: "rtl", openOnClick: "openOnClick", itemTemplate: "itemTemplate", itemLinkTemplate: "itemLinkTemplate" }, host: { properties: { "attr.aria-disabled": "this.disabled", "attr.aria-haspopup": "this.hasPopup", "attr.aria-label": "this.label", "attr.tabindex": "this.activeId" } }, providers: [PopupService, {
438
+ ItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ItemComponent, isStandalone: true, selector: "[kendoMenuItem]", inputs: { appendTo: "appendTo", item: "item", level: "level", index: "index", siblingIndex: "siblingIndex", animate: "animate", size: "size", vertical: "vertical", rtl: "rtl", openOnClick: "openOnClick", itemTemplate: "itemTemplate", itemLinkTemplate: "itemLinkTemplate" }, host: { properties: { "attr.aria-disabled": "this.disabled", "attr.aria-haspopup": "this.hasPopup", "attr.aria-label": "this.label" } }, providers: [PopupService, {
441
439
  provide: POPUP_CONTAINER,
442
440
  useFactory: bodyFactory
443
441
  }], viewQueries: [{ propertyName: "link", first: true, predicate: ["link"], descendants: true }, { propertyName: "popupTemplate", first: true, predicate: ["popupTemplate"], descendants: true, static: true }], ngImport: i0, template: `
@@ -590,7 +588,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
590
588
  }], label: [{
591
589
  type: HostBinding,
592
590
  args: ['attr.aria-label']
593
- }], activeId: [{
594
- type: HostBinding,
595
- args: ['attr.tabindex']
596
591
  }] } });
@@ -21,8 +21,8 @@ const packageMetadata = {
21
21
  name: '@progress/kendo-angular-menu',
22
22
  productName: 'Kendo UI for Angular',
23
23
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
24
- publishDate: 1722938727,
25
- version: '16.6.1-develop.1',
24
+ publishDate: 1722952496,
25
+ version: '16.6.1-develop.3',
26
26
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
27
27
  };
28
28
 
@@ -1542,9 +1542,6 @@ class ItemComponent {
1542
1542
  get label() {
1543
1543
  return this.item.text ? this.item.text : null;
1544
1544
  }
1545
- get activeId() {
1546
- return this.index === this.navigation.activeIndex ? '0' : '-1';
1547
- }
1548
1545
  get popupSettings() {
1549
1546
  const settings = this.rtl ? POPUP_SETTINGS_RTL : POPUP_SETTINGS;
1550
1547
  return this.horizontal ? settings.horizontal : settings.vertical;
@@ -1604,6 +1601,7 @@ class ItemComponent {
1604
1601
  if (this.hasContent) {
1605
1602
  this.setAttribute('aria-expanded', this.opened.toString());
1606
1603
  }
1604
+ this.index === this.navigation.activeIndex ? this.setAttribute('tabindex', '0') : this.setAttribute('tabindex', '-1');
1607
1605
  }
1608
1606
  ngOnDestroy() {
1609
1607
  this.itemsService.remove(this);
@@ -1684,7 +1682,7 @@ class ItemComponent {
1684
1682
  }
1685
1683
  }
1686
1684
  ItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ItemComponent, deps: [{ token: ItemsService }, { token: NavigationService }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i5.PopupService }, { token: i0.ElementRef }, { token: ContextMenuService, optional: true }], target: i0.ɵɵFactoryTarget.Component });
1687
- ItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ItemComponent, isStandalone: true, selector: "[kendoMenuItem]", inputs: { appendTo: "appendTo", item: "item", level: "level", index: "index", siblingIndex: "siblingIndex", animate: "animate", size: "size", vertical: "vertical", rtl: "rtl", openOnClick: "openOnClick", itemTemplate: "itemTemplate", itemLinkTemplate: "itemLinkTemplate" }, host: { properties: { "attr.aria-disabled": "this.disabled", "attr.aria-haspopup": "this.hasPopup", "attr.aria-label": "this.label", "attr.tabindex": "this.activeId" } }, providers: [PopupService, {
1685
+ ItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ItemComponent, isStandalone: true, selector: "[kendoMenuItem]", inputs: { appendTo: "appendTo", item: "item", level: "level", index: "index", siblingIndex: "siblingIndex", animate: "animate", size: "size", vertical: "vertical", rtl: "rtl", openOnClick: "openOnClick", itemTemplate: "itemTemplate", itemLinkTemplate: "itemLinkTemplate" }, host: { properties: { "attr.aria-disabled": "this.disabled", "attr.aria-haspopup": "this.hasPopup", "attr.aria-label": "this.label" } }, providers: [PopupService, {
1688
1686
  provide: POPUP_CONTAINER,
1689
1687
  useFactory: bodyFactory
1690
1688
  }], viewQueries: [{ propertyName: "link", first: true, predicate: ["link"], descendants: true }, { propertyName: "popupTemplate", first: true, predicate: ["popupTemplate"], descendants: true, static: true }], ngImport: i0, template: `
@@ -1839,9 +1837,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1839
1837
  }], label: [{
1840
1838
  type: HostBinding,
1841
1839
  args: ['attr.aria-label']
1842
- }], activeId: [{
1843
- type: HostBinding,
1844
- args: ['attr.tabindex']
1845
1840
  }] } });
1846
1841
 
1847
1842
  /**
@@ -21,8 +21,8 @@ const packageMetadata = {
21
21
  name: '@progress/kendo-angular-menu',
22
22
  productName: 'Kendo UI for Angular',
23
23
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
24
- publishDate: 1722938727,
25
- version: '16.6.1-develop.1',
24
+ publishDate: 1722952496,
25
+ version: '16.6.1-develop.3',
26
26
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
27
27
  };
28
28
 
@@ -1536,9 +1536,6 @@ class ItemComponent {
1536
1536
  get label() {
1537
1537
  return this.item.text ? this.item.text : null;
1538
1538
  }
1539
- get activeId() {
1540
- return this.index === this.navigation.activeIndex ? '0' : '-1';
1541
- }
1542
1539
  get popupSettings() {
1543
1540
  const settings = this.rtl ? POPUP_SETTINGS_RTL : POPUP_SETTINGS;
1544
1541
  return this.horizontal ? settings.horizontal : settings.vertical;
@@ -1598,6 +1595,7 @@ class ItemComponent {
1598
1595
  if (this.hasContent) {
1599
1596
  this.setAttribute('aria-expanded', this.opened.toString());
1600
1597
  }
1598
+ this.index === this.navigation.activeIndex ? this.setAttribute('tabindex', '0') : this.setAttribute('tabindex', '-1');
1601
1599
  }
1602
1600
  ngOnDestroy() {
1603
1601
  this.itemsService.remove(this);
@@ -1678,7 +1676,7 @@ class ItemComponent {
1678
1676
  }
1679
1677
  }
1680
1678
  ItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ItemComponent, deps: [{ token: ItemsService }, { token: NavigationService }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i5.PopupService }, { token: i0.ElementRef }, { token: ContextMenuService, optional: true }], target: i0.ɵɵFactoryTarget.Component });
1681
- ItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ItemComponent, isStandalone: true, selector: "[kendoMenuItem]", inputs: { appendTo: "appendTo", item: "item", level: "level", index: "index", siblingIndex: "siblingIndex", animate: "animate", size: "size", vertical: "vertical", rtl: "rtl", openOnClick: "openOnClick", itemTemplate: "itemTemplate", itemLinkTemplate: "itemLinkTemplate" }, host: { properties: { "attr.aria-disabled": "this.disabled", "attr.aria-haspopup": "this.hasPopup", "attr.aria-label": "this.label", "attr.tabindex": "this.activeId" } }, providers: [PopupService, {
1679
+ ItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ItemComponent, isStandalone: true, selector: "[kendoMenuItem]", inputs: { appendTo: "appendTo", item: "item", level: "level", index: "index", siblingIndex: "siblingIndex", animate: "animate", size: "size", vertical: "vertical", rtl: "rtl", openOnClick: "openOnClick", itemTemplate: "itemTemplate", itemLinkTemplate: "itemLinkTemplate" }, host: { properties: { "attr.aria-disabled": "this.disabled", "attr.aria-haspopup": "this.hasPopup", "attr.aria-label": "this.label" } }, providers: [PopupService, {
1682
1680
  provide: POPUP_CONTAINER,
1683
1681
  useFactory: bodyFactory
1684
1682
  }], viewQueries: [{ propertyName: "link", first: true, predicate: ["link"], descendants: true }, { propertyName: "popupTemplate", first: true, predicate: ["popupTemplate"], descendants: true, static: true }], ngImport: i0, template: `
@@ -1831,9 +1829,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1831
1829
  }], label: [{
1832
1830
  type: HostBinding,
1833
1831
  args: ['attr.aria-label']
1834
- }], activeId: [{
1835
- type: HostBinding,
1836
- args: ['attr.tabindex']
1837
1832
  }] } });
1838
1833
 
1839
1834
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-menu",
3
- "version": "16.6.1-develop.1",
3
+ "version": "16.6.1-develop.3",
4
4
  "description": "Kendo UI Angular Menu component",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -23,15 +23,15 @@
23
23
  "@angular/core": "15 - 18",
24
24
  "@angular/platform-browser": "15 - 18",
25
25
  "@progress/kendo-licensing": "^1.0.2",
26
- "@progress/kendo-angular-common": "16.6.1-develop.1",
27
- "@progress/kendo-angular-l10n": "16.6.1-develop.1",
28
- "@progress/kendo-angular-icons": "16.6.1-develop.1",
29
- "@progress/kendo-angular-popup": "16.6.1-develop.1",
26
+ "@progress/kendo-angular-common": "16.6.1-develop.3",
27
+ "@progress/kendo-angular-l10n": "16.6.1-develop.3",
28
+ "@progress/kendo-angular-icons": "16.6.1-develop.3",
29
+ "@progress/kendo-angular-popup": "16.6.1-develop.3",
30
30
  "rxjs": "^6.5.3 || ^7.0.0"
31
31
  },
32
32
  "dependencies": {
33
33
  "tslib": "^2.3.1",
34
- "@progress/kendo-angular-schematics": "16.6.1-develop.1"
34
+ "@progress/kendo-angular-schematics": "16.6.1-develop.3"
35
35
  },
36
36
  "schematics": "./schematics/collection.json",
37
37
  "module": "fesm2015/progress-kendo-angular-menu.mjs",
@@ -77,7 +77,6 @@ export declare class ItemComponent implements OnInit, AfterViewInit, OnDestroy {
77
77
  get disabled(): boolean;
78
78
  get hasPopup(): boolean;
79
79
  get label(): boolean;
80
- get activeId(): string;
81
80
  get popupSettings(): any;
82
81
  get horizontal(): boolean;
83
82
  get hasLink(): boolean;