@progress/kendo-angular-dropdowns 18.0.0-develop.12 → 18.0.0-develop.14

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"
@@ -8,8 +8,9 @@
8
8
  export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-dropdowns',
10
10
  productName: 'Kendo UI for Angular',
11
- productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1737100747,
13
- version: '18.0.0-develop.12',
11
+ productCode: 'KENDOUIANGULAR',
12
+ productCodes: ['KENDOUIANGULAR'],
13
+ publishDate: 1737372765,
14
+ version: '18.0.0-develop.14',
14
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
16
  };
@@ -35,9 +35,10 @@ import { DialogContainerService, DialogService, WindowService, WindowContainerSe
35
35
  const packageMetadata = {
36
36
  name: '@progress/kendo-angular-dropdowns',
37
37
  productName: 'Kendo UI for Angular',
38
- productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
39
- publishDate: 1737100747,
40
- version: '18.0.0-develop.12',
38
+ productCode: 'KENDOUIANGULAR',
39
+ productCodes: ['KENDOUIANGULAR'],
40
+ publishDate: 1737372765,
41
+ version: '18.0.0-develop.14',
41
42
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
42
43
  };
43
44
 
@@ -1267,6 +1268,7 @@ class DataService {
1267
1268
  if (isPresent(group)) {
1268
1269
  flat.push({
1269
1270
  header: true,
1271
+ groupIndex: groupIndex,
1270
1272
  index: groupIndex + offset,
1271
1273
  offsetIndex: groupIndex,
1272
1274
  value: group
@@ -1281,6 +1283,7 @@ class DataService {
1281
1283
  else {
1282
1284
  result.push({
1283
1285
  header: false,
1286
+ groupIndex: groupIndex,
1284
1287
  index: groupIndex + offset + i + 1,
1285
1288
  offsetIndex: offset + i,
1286
1289
  value: data[i]
@@ -2389,7 +2392,7 @@ class ListComponent {
2389
2392
  'minHeight.px' : virtual?.itemHeight,
2390
2393
  'boxSizing' : virtual ? 'border-box' : 'inherit'}"
2391
2394
  [attr.group-index]="dataItem.index"
2392
- [attr.id]="optionPrefix + '-' + itemIndex"
2395
+ [attr.id]="optionPrefix + '-' + dataItem.groupIndex + '-' + dataItem.value"
2393
2396
  [attr.tabIndex]="-1"
2394
2397
  [style.width.px]="rowWidth ?? null">
2395
2398
  <span [class]="listGroupItemTextClass">
@@ -2411,7 +2414,7 @@ class ListComponent {
2411
2414
  [index]="dataItem.offsetIndex"
2412
2415
  [multipleSelection]="multipleSelection"
2413
2416
  [attr.absolute-index]="dataItem.index"
2414
- [attr.id]="optionPrefix + '-' + itemIndex"
2417
+ [attr.id]="optionPrefix + '-' + (itemIndex - 1 - dataItem.groupIndex)"
2415
2418
  [attr.tabIndex]="-1"
2416
2419
  [attr.aria-selected]="isItemSelected(dataItem.offsetIndex)"
2417
2420
  [class]="listItemClass"
@@ -2527,7 +2530,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
2527
2530
  'minHeight.px' : virtual?.itemHeight,
2528
2531
  'boxSizing' : virtual ? 'border-box' : 'inherit'}"
2529
2532
  [attr.group-index]="dataItem.index"
2530
- [attr.id]="optionPrefix + '-' + itemIndex"
2533
+ [attr.id]="optionPrefix + '-' + dataItem.groupIndex + '-' + dataItem.value"
2531
2534
  [attr.tabIndex]="-1"
2532
2535
  [style.width.px]="rowWidth ?? null">
2533
2536
  <span [class]="listGroupItemTextClass">
@@ -2549,7 +2552,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
2549
2552
  [index]="dataItem.offsetIndex"
2550
2553
  [multipleSelection]="multipleSelection"
2551
2554
  [attr.absolute-index]="dataItem.index"
2552
- [attr.id]="optionPrefix + '-' + itemIndex"
2555
+ [attr.id]="optionPrefix + '-' + (itemIndex - 1 - dataItem.groupIndex)"
2553
2556
  [attr.tabIndex]="-1"
2554
2557
  [attr.aria-selected]="isItemSelected(dataItem.offsetIndex)"
2555
2558
  [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.12",
3
+ "version": "18.0.0-develop.14",
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",
@@ -16,7 +16,13 @@
16
16
  "Progress"
17
17
  ],
18
18
  "@progress": {
19
- "friendlyName": "Dropdowns"
19
+ "friendlyName": "Dropdowns",
20
+ "package": {
21
+ "productName": "Kendo UI for Angular",
22
+ "productCode": "KENDOUIANGULAR",
23
+ "publishDate": 1737372765,
24
+ "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
25
+ }
20
26
  },
21
27
  "peerDependencies": {
22
28
  "@angular/animations": "16 - 19",
@@ -25,18 +31,18 @@
25
31
  "@angular/forms": "16 - 19",
26
32
  "@angular/platform-browser": "16 - 19",
27
33
  "@progress/kendo-licensing": "^1.0.2",
28
- "@progress/kendo-angular-common": "18.0.0-develop.12",
29
- "@progress/kendo-angular-utils": "18.0.0-develop.12",
30
- "@progress/kendo-angular-l10n": "18.0.0-develop.12",
31
- "@progress/kendo-angular-navigation": "18.0.0-develop.12",
32
- "@progress/kendo-angular-popup": "18.0.0-develop.12",
33
- "@progress/kendo-angular-icons": "18.0.0-develop.12",
34
- "@progress/kendo-angular-treeview": "18.0.0-develop.12",
34
+ "@progress/kendo-angular-common": "18.0.0-develop.14",
35
+ "@progress/kendo-angular-utils": "18.0.0-develop.14",
36
+ "@progress/kendo-angular-l10n": "18.0.0-develop.14",
37
+ "@progress/kendo-angular-navigation": "18.0.0-develop.14",
38
+ "@progress/kendo-angular-popup": "18.0.0-develop.14",
39
+ "@progress/kendo-angular-icons": "18.0.0-develop.14",
40
+ "@progress/kendo-angular-treeview": "18.0.0-develop.14",
35
41
  "rxjs": "^6.5.3 || ^7.0.0"
36
42
  },
37
43
  "dependencies": {
38
44
  "tslib": "^2.3.1",
39
- "@progress/kendo-angular-schematics": "18.0.0-develop.12",
45
+ "@progress/kendo-angular-schematics": "18.0.0-develop.14",
40
46
  "@progress/kendo-common": "^1.0.1"
41
47
  },
42
48
  "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.12',
7
+ '@progress/kendo-angular-inputs': '18.0.0-develop.14',
8
8
  // peers of inputs
9
- '@progress/kendo-angular-intl': '18.0.0-develop.12',
9
+ '@progress/kendo-angular-intl': '18.0.0-develop.14',
10
10
  '@progress/kendo-drawing': '^1.17.2',
11
11
  // Peer dependency of icons
12
12
  '@progress/kendo-svg-icons': '^4.0.0'