@progress/kendo-angular-dropdowns 16.5.0-develop.5 → 16.5.0-develop.6

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.
@@ -891,10 +891,12 @@ export class DropDownTreeComponent {
891
891
  * @hidden
892
892
  */
893
893
  handleFilterInputChange(input) {
894
- this.filterChange.next(typeof input === 'string' ? input : input.value);
894
+ const value = typeof input === 'string' ? input : input.value;
895
+ this.filter = value;
896
+ this.filterChange.next(value);
895
897
  this.allNodesHidden = this.areNodesHidden(this.nodes);
896
898
  this._zone.onStable.pipe(take(1)).subscribe(() => {
897
- if (this.data.length === 0 || this.allNodesHidden) {
899
+ if (this.data.length === 0 || this.allNodesHidden || this.filter === '') {
898
900
  this.filterInput?.nativeElement.focus();
899
901
  }
900
902
  });
@@ -1120,6 +1120,7 @@ export class MultiSelectTreeComponent {
1120
1120
  * @hidden
1121
1121
  */
1122
1122
  handleFilterInputChange(input) {
1123
+ this.filter = input.value;
1123
1124
  this.filterChange.next(input.value);
1124
1125
  }
1125
1126
  /**
@@ -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: 1721674618,
13
- version: '16.5.0-develop.5',
12
+ publishDate: 1721766132,
13
+ version: '16.5.0-develop.6',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -38,8 +38,8 @@ const packageMetadata = {
38
38
  name: '@progress/kendo-angular-dropdowns',
39
39
  productName: 'Kendo UI for Angular',
40
40
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
41
- publishDate: 1721674618,
42
- version: '16.5.0-develop.5',
41
+ publishDate: 1721766132,
42
+ version: '16.5.0-develop.6',
43
43
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
44
44
  };
45
45
 
@@ -13030,11 +13030,13 @@ class DropDownTreeComponent {
13030
13030
  * @hidden
13031
13031
  */
13032
13032
  handleFilterInputChange(input) {
13033
- this.filterChange.next(typeof input === 'string' ? input : input.value);
13033
+ const value = typeof input === 'string' ? input : input.value;
13034
+ this.filter = value;
13035
+ this.filterChange.next(value);
13034
13036
  this.allNodesHidden = this.areNodesHidden(this.nodes);
13035
13037
  this._zone.onStable.pipe(take(1)).subscribe(() => {
13036
13038
  var _a;
13037
- if (this.data.length === 0 || this.allNodesHidden) {
13039
+ if (this.data.length === 0 || this.allNodesHidden || this.filter === '') {
13038
13040
  (_a = this.filterInput) === null || _a === void 0 ? void 0 : _a.nativeElement.focus();
13039
13041
  }
13040
13042
  });
@@ -15482,6 +15484,7 @@ class MultiSelectTreeComponent {
15482
15484
  * @hidden
15483
15485
  */
15484
15486
  handleFilterInputChange(input) {
15487
+ this.filter = input.value;
15485
15488
  this.filterChange.next(input.value);
15486
15489
  }
15487
15490
  /**
@@ -38,8 +38,8 @@ const packageMetadata = {
38
38
  name: '@progress/kendo-angular-dropdowns',
39
39
  productName: 'Kendo UI for Angular',
40
40
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
41
- publishDate: 1721674618,
42
- version: '16.5.0-develop.5',
41
+ publishDate: 1721766132,
42
+ version: '16.5.0-develop.6',
43
43
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
44
44
  };
45
45
 
@@ -12995,10 +12995,12 @@ class DropDownTreeComponent {
12995
12995
  * @hidden
12996
12996
  */
12997
12997
  handleFilterInputChange(input) {
12998
- this.filterChange.next(typeof input === 'string' ? input : input.value);
12998
+ const value = typeof input === 'string' ? input : input.value;
12999
+ this.filter = value;
13000
+ this.filterChange.next(value);
12999
13001
  this.allNodesHidden = this.areNodesHidden(this.nodes);
13000
13002
  this._zone.onStable.pipe(take(1)).subscribe(() => {
13001
- if (this.data.length === 0 || this.allNodesHidden) {
13003
+ if (this.data.length === 0 || this.allNodesHidden || this.filter === '') {
13002
13004
  this.filterInput?.nativeElement.focus();
13003
13005
  }
13004
13006
  });
@@ -15443,6 +15445,7 @@ class MultiSelectTreeComponent {
15443
15445
  * @hidden
15444
15446
  */
15445
15447
  handleFilterInputChange(input) {
15448
+ this.filter = input.value;
15446
15449
  this.filterChange.next(input.value);
15447
15450
  }
15448
15451
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-dropdowns",
3
- "version": "16.5.0-develop.5",
3
+ "version": "16.5.0-develop.6",
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,17 +25,17 @@
25
25
  "@angular/forms": "15 - 18",
26
26
  "@angular/platform-browser": "15 - 18",
27
27
  "@progress/kendo-licensing": "^1.0.2",
28
- "@progress/kendo-angular-common": "16.5.0-develop.5",
29
- "@progress/kendo-angular-l10n": "16.5.0-develop.5",
30
- "@progress/kendo-angular-navigation": "16.5.0-develop.5",
31
- "@progress/kendo-angular-popup": "16.5.0-develop.5",
32
- "@progress/kendo-angular-icons": "16.5.0-develop.5",
33
- "@progress/kendo-angular-treeview": "16.5.0-develop.5",
28
+ "@progress/kendo-angular-common": "16.5.0-develop.6",
29
+ "@progress/kendo-angular-l10n": "16.5.0-develop.6",
30
+ "@progress/kendo-angular-navigation": "16.5.0-develop.6",
31
+ "@progress/kendo-angular-popup": "16.5.0-develop.6",
32
+ "@progress/kendo-angular-icons": "16.5.0-develop.6",
33
+ "@progress/kendo-angular-treeview": "16.5.0-develop.6",
34
34
  "rxjs": "^6.5.3 || ^7.0.0"
35
35
  },
36
36
  "dependencies": {
37
37
  "tslib": "^2.3.1",
38
- "@progress/kendo-angular-schematics": "16.5.0-develop.5",
38
+ "@progress/kendo-angular-schematics": "16.5.0-develop.6",
39
39
  "@progress/kendo-common": "^0.2.1"
40
40
  },
41
41
  "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': '16.5.0-develop.5',
7
+ '@progress/kendo-angular-inputs': '16.5.0-develop.6',
8
8
  // peers of inputs
9
- '@progress/kendo-angular-intl': '16.5.0-develop.5',
9
+ '@progress/kendo-angular-intl': '16.5.0-develop.6',
10
10
  '@progress/kendo-drawing': '^1.17.2',
11
11
  // Peer dependency of icons
12
12
  '@progress/kendo-svg-icons': '^3.0.0'