@progress/kendo-angular-dropdowns 18.0.0-develop.11 → 18.0.0-develop.13

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.
@@ -217,6 +217,7 @@ export class DataService {
217
217
  if (isPresent(group)) {
218
218
  flat.push({
219
219
  header: true,
220
+ groupIndex: groupIndex,
220
221
  index: groupIndex + offset,
221
222
  offsetIndex: groupIndex,
222
223
  value: group
@@ -231,6 +232,7 @@ export class DataService {
231
232
  else {
232
233
  result.push({
233
234
  header: false,
235
+ groupIndex: groupIndex,
234
236
  index: groupIndex + offset + i + 1,
235
237
  offsetIndex: offset + i,
236
238
  value: data[i]
@@ -519,7 +519,7 @@ export class ListComponent {
519
519
  'minHeight.px' : virtual?.itemHeight,
520
520
  'boxSizing' : virtual ? 'border-box' : 'inherit'}"
521
521
  [attr.group-index]="dataItem.index"
522
- [attr.id]="optionPrefix + '-' + itemIndex"
522
+ [attr.id]="optionPrefix + '-' + dataItem.groupIndex + '-' + dataItem.value"
523
523
  [attr.tabIndex]="-1"
524
524
  [style.width.px]="rowWidth ?? null">
525
525
  <span [class]="listGroupItemTextClass">
@@ -541,7 +541,7 @@ export class ListComponent {
541
541
  [index]="dataItem.offsetIndex"
542
542
  [multipleSelection]="multipleSelection"
543
543
  [attr.absolute-index]="dataItem.index"
544
- [attr.id]="optionPrefix + '-' + itemIndex"
544
+ [attr.id]="optionPrefix + '-' + (itemIndex - 1 - dataItem.groupIndex)"
545
545
  [attr.tabIndex]="-1"
546
546
  [attr.aria-selected]="isItemSelected(dataItem.offsetIndex)"
547
547
  [class]="listItemClass"
@@ -657,7 +657,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
657
657
  'minHeight.px' : virtual?.itemHeight,
658
658
  'boxSizing' : virtual ? 'border-box' : 'inherit'}"
659
659
  [attr.group-index]="dataItem.index"
660
- [attr.id]="optionPrefix + '-' + itemIndex"
660
+ [attr.id]="optionPrefix + '-' + dataItem.groupIndex + '-' + dataItem.value"
661
661
  [attr.tabIndex]="-1"
662
662
  [style.width.px]="rowWidth ?? null">
663
663
  <span [class]="listGroupItemTextClass">
@@ -679,7 +679,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
679
679
  [index]="dataItem.offsetIndex"
680
680
  [multipleSelection]="multipleSelection"
681
681
  [attr.absolute-index]="dataItem.index"
682
- [attr.id]="optionPrefix + '-' + itemIndex"
682
+ [attr.id]="optionPrefix + '-' + (itemIndex - 1 - dataItem.groupIndex)"
683
683
  [attr.tabIndex]="-1"
684
684
  [attr.aria-selected]="isItemSelected(dataItem.offsetIndex)"
685
685
  [class]="listItemClass"
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-dropdowns',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1736860208,
13
- version: '18.0.0-develop.11',
12
+ publishDate: 1737124985,
13
+ version: '18.0.0-develop.13',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -36,8 +36,8 @@ const packageMetadata = {
36
36
  name: '@progress/kendo-angular-dropdowns',
37
37
  productName: 'Kendo UI for Angular',
38
38
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
39
- publishDate: 1736860208,
40
- version: '18.0.0-develop.11',
39
+ publishDate: 1737124985,
40
+ version: '18.0.0-develop.13',
41
41
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
42
42
  };
43
43
 
@@ -1267,6 +1267,7 @@ class DataService {
1267
1267
  if (isPresent(group)) {
1268
1268
  flat.push({
1269
1269
  header: true,
1270
+ groupIndex: groupIndex,
1270
1271
  index: groupIndex + offset,
1271
1272
  offsetIndex: groupIndex,
1272
1273
  value: group
@@ -1281,6 +1282,7 @@ class DataService {
1281
1282
  else {
1282
1283
  result.push({
1283
1284
  header: false,
1285
+ groupIndex: groupIndex,
1284
1286
  index: groupIndex + offset + i + 1,
1285
1287
  offsetIndex: offset + i,
1286
1288
  value: data[i]
@@ -2389,7 +2391,7 @@ class ListComponent {
2389
2391
  'minHeight.px' : virtual?.itemHeight,
2390
2392
  'boxSizing' : virtual ? 'border-box' : 'inherit'}"
2391
2393
  [attr.group-index]="dataItem.index"
2392
- [attr.id]="optionPrefix + '-' + itemIndex"
2394
+ [attr.id]="optionPrefix + '-' + dataItem.groupIndex + '-' + dataItem.value"
2393
2395
  [attr.tabIndex]="-1"
2394
2396
  [style.width.px]="rowWidth ?? null">
2395
2397
  <span [class]="listGroupItemTextClass">
@@ -2411,7 +2413,7 @@ class ListComponent {
2411
2413
  [index]="dataItem.offsetIndex"
2412
2414
  [multipleSelection]="multipleSelection"
2413
2415
  [attr.absolute-index]="dataItem.index"
2414
- [attr.id]="optionPrefix + '-' + itemIndex"
2416
+ [attr.id]="optionPrefix + '-' + (itemIndex - 1 - dataItem.groupIndex)"
2415
2417
  [attr.tabIndex]="-1"
2416
2418
  [attr.aria-selected]="isItemSelected(dataItem.offsetIndex)"
2417
2419
  [class]="listItemClass"
@@ -2527,7 +2529,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
2527
2529
  'minHeight.px' : virtual?.itemHeight,
2528
2530
  'boxSizing' : virtual ? 'border-box' : 'inherit'}"
2529
2531
  [attr.group-index]="dataItem.index"
2530
- [attr.id]="optionPrefix + '-' + itemIndex"
2532
+ [attr.id]="optionPrefix + '-' + dataItem.groupIndex + '-' + dataItem.value"
2531
2533
  [attr.tabIndex]="-1"
2532
2534
  [style.width.px]="rowWidth ?? null">
2533
2535
  <span [class]="listGroupItemTextClass">
@@ -2549,7 +2551,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
2549
2551
  [index]="dataItem.offsetIndex"
2550
2552
  [multipleSelection]="multipleSelection"
2551
2553
  [attr.absolute-index]="dataItem.index"
2552
- [attr.id]="optionPrefix + '-' + itemIndex"
2554
+ [attr.id]="optionPrefix + '-' + (itemIndex - 1 - dataItem.groupIndex)"
2553
2555
  [attr.tabIndex]="-1"
2554
2556
  [attr.aria-selected]="isItemSelected(dataItem.offsetIndex)"
2555
2557
  [class]="listItemClass"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-dropdowns",
3
- "version": "18.0.0-develop.11",
3
+ "version": "18.0.0-develop.13",
4
4
  "description": "A wide variety of native Angular dropdown components including AutoComplete, ComboBox, DropDownList, DropDownTree, MultiColumnComboBox, MultiSelect, and MultiSelectTree ",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -25,18 +25,18 @@
25
25
  "@angular/forms": "16 - 19",
26
26
  "@angular/platform-browser": "16 - 19",
27
27
  "@progress/kendo-licensing": "^1.0.2",
28
- "@progress/kendo-angular-common": "18.0.0-develop.11",
29
- "@progress/kendo-angular-utils": "18.0.0-develop.11",
30
- "@progress/kendo-angular-l10n": "18.0.0-develop.11",
31
- "@progress/kendo-angular-navigation": "18.0.0-develop.11",
32
- "@progress/kendo-angular-popup": "18.0.0-develop.11",
33
- "@progress/kendo-angular-icons": "18.0.0-develop.11",
34
- "@progress/kendo-angular-treeview": "18.0.0-develop.11",
28
+ "@progress/kendo-angular-common": "18.0.0-develop.13",
29
+ "@progress/kendo-angular-utils": "18.0.0-develop.13",
30
+ "@progress/kendo-angular-l10n": "18.0.0-develop.13",
31
+ "@progress/kendo-angular-navigation": "18.0.0-develop.13",
32
+ "@progress/kendo-angular-popup": "18.0.0-develop.13",
33
+ "@progress/kendo-angular-icons": "18.0.0-develop.13",
34
+ "@progress/kendo-angular-treeview": "18.0.0-develop.13",
35
35
  "rxjs": "^6.5.3 || ^7.0.0"
36
36
  },
37
37
  "dependencies": {
38
38
  "tslib": "^2.3.1",
39
- "@progress/kendo-angular-schematics": "18.0.0-develop.11",
39
+ "@progress/kendo-angular-schematics": "18.0.0-develop.13",
40
40
  "@progress/kendo-common": "^1.0.1"
41
41
  },
42
42
  "schematics": "./schematics/collection.json",
@@ -4,9 +4,9 @@ const schematics_1 = require("@angular-devkit/schematics");
4
4
  function default_1(options) {
5
5
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'DropDownsModule', package: 'dropdowns', peerDependencies: {
6
6
  // peers of the treeview
7
- '@progress/kendo-angular-inputs': '18.0.0-develop.11',
7
+ '@progress/kendo-angular-inputs': '18.0.0-develop.13',
8
8
  // peers of inputs
9
- '@progress/kendo-angular-intl': '18.0.0-develop.11',
9
+ '@progress/kendo-angular-intl': '18.0.0-develop.13',
10
10
  '@progress/kendo-drawing': '^1.17.2',
11
11
  // Peer dependency of icons
12
12
  '@progress/kendo-svg-icons': '^4.0.0'