@progress/kendo-angular-listbox 24.0.0-develop.13 → 24.0.0-develop.15

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.
@@ -24,8 +24,8 @@ const packageMetadata = {
24
24
  productName: 'Kendo UI for Angular',
25
25
  productCode: 'KENDOUIANGULAR',
26
26
  productCodes: ['KENDOUIANGULAR'],
27
- publishDate: 1777479601,
28
- version: '24.0.0-develop.13',
27
+ publishDate: 1777541476,
28
+ version: '24.0.0-develop.15',
29
29
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
30
30
  };
31
31
 
@@ -1395,8 +1395,8 @@ class ListBoxComponent {
1395
1395
  [icon]="toolIcon(tool.icon)"
1396
1396
  [svgIcon]="toolSVGIcon(tool.svgIcon)"
1397
1397
  [attr.title]="messageFor(tool.name)"
1398
+ [attr.aria-label]="messageFor(tool.name)"
1398
1399
  (click)="performAction(tool.name)"
1399
- role="button"
1400
1400
  type="button"
1401
1401
  ></button>
1402
1402
  }
@@ -1413,7 +1413,7 @@ class ListBoxComponent {
1413
1413
  class="k-list-ul"
1414
1414
  role="listbox"
1415
1415
  [attr.aria-label]="listboxLabel"
1416
- [attr.aria-multiselectable]="selectable === 'multiple'"
1416
+ [attr.aria-multiselectable]="selectable === 'multiple' ? true : null"
1417
1417
  >
1418
1418
  @for (item of data; track item; let i = $index) {
1419
1419
  <li
@@ -1425,7 +1425,7 @@ class ListBoxComponent {
1425
1425
  [attr.aria-selected]="selectedIndices.indexOf(i) >= 0"
1426
1426
  [index]="i"
1427
1427
  [class.k-disabled]="itemDisabled(item)"
1428
- [attr.aria-disabled]="itemDisabled(item)"
1428
+ [attr.aria-disabled]="itemDisabled(item) ? true : null"
1429
1429
  >
1430
1430
  @if (itemTemplate) {
1431
1431
  <ng-template
@@ -1508,8 +1508,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
1508
1508
  [icon]="toolIcon(tool.icon)"
1509
1509
  [svgIcon]="toolSVGIcon(tool.svgIcon)"
1510
1510
  [attr.title]="messageFor(tool.name)"
1511
+ [attr.aria-label]="messageFor(tool.name)"
1511
1512
  (click)="performAction(tool.name)"
1512
- role="button"
1513
1513
  type="button"
1514
1514
  ></button>
1515
1515
  }
@@ -1526,7 +1526,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
1526
1526
  class="k-list-ul"
1527
1527
  role="listbox"
1528
1528
  [attr.aria-label]="listboxLabel"
1529
- [attr.aria-multiselectable]="selectable === 'multiple'"
1529
+ [attr.aria-multiselectable]="selectable === 'multiple' ? true : null"
1530
1530
  >
1531
1531
  @for (item of data; track item; let i = $index) {
1532
1532
  <li
@@ -1538,7 +1538,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
1538
1538
  [attr.aria-selected]="selectedIndices.indexOf(i) >= 0"
1539
1539
  [index]="i"
1540
1540
  [class.k-disabled]="itemDisabled(item)"
1541
- [attr.aria-disabled]="itemDisabled(item)"
1541
+ [attr.aria-disabled]="itemDisabled(item) ? true : null"
1542
1542
  >
1543
1543
  @if (itemTemplate) {
1544
1544
  <ng-template
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1777479601,
11
- "version": "24.0.0-develop.13",
10
+ "publishDate": 1777541476,
11
+ "version": "24.0.0-develop.15",
12
12
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-listbox",
3
- "version": "24.0.0-develop.13",
3
+ "version": "24.0.0-develop.15",
4
4
  "description": "Kendo UI for Angular ListBox",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -41,7 +41,7 @@
41
41
  "package": {
42
42
  "productName": "Kendo UI for Angular",
43
43
  "productCode": "KENDOUIANGULAR",
44
- "publishDate": 1777479601,
44
+ "publishDate": 1777541476,
45
45
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning"
46
46
  }
47
47
  },
@@ -51,14 +51,14 @@
51
51
  "@angular/core": "19 - 21",
52
52
  "@angular/platform-browser": "19 - 21",
53
53
  "@progress/kendo-licensing": "^1.11.0",
54
- "@progress/kendo-angular-buttons": "24.0.0-develop.13",
55
- "@progress/kendo-angular-common": "24.0.0-develop.13",
56
- "@progress/kendo-angular-popup": "24.0.0-develop.13",
54
+ "@progress/kendo-angular-buttons": "24.0.0-develop.15",
55
+ "@progress/kendo-angular-common": "24.0.0-develop.15",
56
+ "@progress/kendo-angular-popup": "24.0.0-develop.15",
57
57
  "rxjs": "^6.5.3 || ^7.0.0"
58
58
  },
59
59
  "dependencies": {
60
60
  "tslib": "^2.3.1",
61
- "@progress/kendo-angular-schematics": "24.0.0-develop.13",
61
+ "@progress/kendo-angular-schematics": "24.0.0-develop.15",
62
62
  "@progress/kendo-common": "^1.0.1"
63
63
  },
64
64
  "schematics": "./schematics/collection.json",
@@ -11,11 +11,11 @@ function default_1(options) {
11
11
  // Additional dependencies to install.
12
12
  // See https://github.com/telerik/kendo-schematics/issues/28
13
13
  peerDependencies: {
14
- '@progress/kendo-angular-buttons': '24.0.0-develop.13',
15
- '@progress/kendo-angular-common': '24.0.0-develop.13',
16
- '@progress/kendo-angular-l10n': '24.0.0-develop.13',
14
+ '@progress/kendo-angular-buttons': '24.0.0-develop.15',
15
+ '@progress/kendo-angular-common': '24.0.0-develop.15',
16
+ '@progress/kendo-angular-l10n': '24.0.0-develop.15',
17
17
  // Peer of kendo-angular-buttons
18
- '@progress/kendo-angular-popup': '24.0.0-develop.13'
18
+ '@progress/kendo-angular-popup': '24.0.0-develop.15'
19
19
  } });
20
20
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
21
21
  }