@progress/kendo-angular-dropdowns 20.1.0-develop.10 → 20.1.0-develop.11

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.
@@ -664,7 +664,7 @@ export class DropDownTreeComponent {
664
664
  const itemToFocus = this._searchableNodes.find((node) => {
665
665
  return node.text.toLowerCase().startsWith(this._typedValue);
666
666
  });
667
- this.treeview.focus(itemToFocus?.index);
667
+ this.treeview?.focus(itemToFocus?.index);
668
668
  }), debounceTime(1000)).subscribe(() => {
669
669
  this._typedValue = '';
670
670
  }));
@@ -835,7 +835,7 @@ export class MultiSelectTreeComponent {
835
835
  const itemToFocus = this._searchableNodes.find((node) => {
836
836
  return node.text.toLowerCase().startsWith(this._typedValue);
837
837
  });
838
- this.treeview.focus(itemToFocus?.index);
838
+ this.treeview?.focus(itemToFocus?.index);
839
839
  }), debounceTime(1000)).subscribe(() => {
840
840
  this._typedValue = '';
841
841
  }));
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1759496487,
14
- version: '20.1.0-develop.10',
13
+ publishDate: 1759739215,
14
+ version: '20.1.0-develop.11',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -37,8 +37,8 @@ const packageMetadata = {
37
37
  productName: 'Kendo UI for Angular',
38
38
  productCode: 'KENDOUIANGULAR',
39
39
  productCodes: ['KENDOUIANGULAR'],
40
- publishDate: 1759496487,
41
- version: '20.1.0-develop.10',
40
+ publishDate: 1759739215,
41
+ version: '20.1.0-develop.11',
42
42
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
43
43
  };
44
44
 
@@ -13259,7 +13259,7 @@ class DropDownTreeComponent {
13259
13259
  const itemToFocus = this._searchableNodes.find((node) => {
13260
13260
  return node.text.toLowerCase().startsWith(this._typedValue);
13261
13261
  });
13262
- this.treeview.focus(itemToFocus?.index);
13262
+ this.treeview?.focus(itemToFocus?.index);
13263
13263
  }), debounceTime(1000)).subscribe(() => {
13264
13264
  this._typedValue = '';
13265
13265
  }));
@@ -15776,7 +15776,7 @@ class MultiSelectTreeComponent {
15776
15776
  const itemToFocus = this._searchableNodes.find((node) => {
15777
15777
  return node.text.toLowerCase().startsWith(this._typedValue);
15778
15778
  });
15779
- this.treeview.focus(itemToFocus?.index);
15779
+ this.treeview?.focus(itemToFocus?.index);
15780
15780
  }), debounceTime(1000)).subscribe(() => {
15781
15781
  this._typedValue = '';
15782
15782
  }));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-dropdowns",
3
- "version": "20.1.0-develop.10",
3
+ "version": "20.1.0-develop.11",
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",
@@ -100,7 +100,7 @@
100
100
  "package": {
101
101
  "productName": "Kendo UI for Angular",
102
102
  "productCode": "KENDOUIANGULAR",
103
- "publishDate": 1759496487,
103
+ "publishDate": 1759739215,
104
104
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
105
105
  }
106
106
  },
@@ -111,18 +111,18 @@
111
111
  "@angular/forms": "16 - 20",
112
112
  "@angular/platform-browser": "16 - 20",
113
113
  "@progress/kendo-licensing": "^1.7.0",
114
- "@progress/kendo-angular-common": "20.1.0-develop.10",
115
- "@progress/kendo-angular-utils": "20.1.0-develop.10",
116
- "@progress/kendo-angular-l10n": "20.1.0-develop.10",
117
- "@progress/kendo-angular-navigation": "20.1.0-develop.10",
118
- "@progress/kendo-angular-popup": "20.1.0-develop.10",
119
- "@progress/kendo-angular-icons": "20.1.0-develop.10",
120
- "@progress/kendo-angular-treeview": "20.1.0-develop.10",
114
+ "@progress/kendo-angular-common": "20.1.0-develop.11",
115
+ "@progress/kendo-angular-utils": "20.1.0-develop.11",
116
+ "@progress/kendo-angular-l10n": "20.1.0-develop.11",
117
+ "@progress/kendo-angular-navigation": "20.1.0-develop.11",
118
+ "@progress/kendo-angular-popup": "20.1.0-develop.11",
119
+ "@progress/kendo-angular-icons": "20.1.0-develop.11",
120
+ "@progress/kendo-angular-treeview": "20.1.0-develop.11",
121
121
  "rxjs": "^6.5.3 || ^7.0.0"
122
122
  },
123
123
  "dependencies": {
124
124
  "tslib": "^2.3.1",
125
- "@progress/kendo-angular-schematics": "20.1.0-develop.10",
125
+ "@progress/kendo-angular-schematics": "20.1.0-develop.11",
126
126
  "@progress/kendo-common": "^1.0.1",
127
127
  "node-html-parser": "^7.0.1"
128
128
  },
@@ -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': '20.1.0-develop.10',
7
+ '@progress/kendo-angular-inputs': '20.1.0-develop.11',
8
8
  // peers of inputs
9
- '@progress/kendo-angular-intl': '20.1.0-develop.10',
9
+ '@progress/kendo-angular-intl': '20.1.0-develop.11',
10
10
  '@progress/kendo-drawing': '^1.17.2',
11
11
  // Peer dependency of icons
12
12
  '@progress/kendo-svg-icons': '^4.0.0'