@progress/kendo-angular-dropdowns 25.1.0-develop.19 → 25.1.0-develop.20

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.
@@ -37,8 +37,8 @@ const packageMetadata = {
37
37
  productName: 'Kendo UI for Angular',
38
38
  productCode: 'KENDOUIANGULAR',
39
39
  productCodes: ['KENDOUIANGULAR'],
40
- publishDate: 1787936927,
41
- version: '25.1.0-develop.19',
40
+ publishDate: 1787938403,
41
+ version: '25.1.0-develop.20',
42
42
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
43
43
  };
44
44
 
@@ -8499,6 +8499,9 @@ class DropDownListComponent {
8499
8499
  // Otherwise, the "Expression has changed..." type error will be thrown.
8500
8500
  Promise.resolve(null).then(() => {
8501
8501
  const shouldOpen = isPresent(open) ? open : !this._open();
8502
+ if (shouldOpen) {
8503
+ this.focus();
8504
+ }
8502
8505
  this._toggle(shouldOpen);
8503
8506
  });
8504
8507
  }
@@ -8892,6 +8895,13 @@ class DropDownListComponent {
8892
8895
  componentBlur() {
8893
8896
  if (!this.isActionSheetExpanded) {
8894
8897
  this.isFocused = false;
8898
+ if (isDocumentAvailable()) {
8899
+ setTimeout(() => {
8900
+ if (this.searchInput && document.activeElement === this.searchInput.nativeElement) {
8901
+ this.searchInput.nativeElement.blur();
8902
+ }
8903
+ });
8904
+ }
8895
8905
  const selectionPresent = isPresent(this.selectionService.selected[0]);
8896
8906
  const valueHasChanged = selectionPresent && getter(this.value, this.valueField) !== getter(this.dataService.itemAt(this.selectionService.selected[0]), this.valueField);
8897
8907
  if (valueHasChanged ||
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1787936927,
11
- "version": "25.1.0-develop.19",
10
+ "publishDate": 1787938403,
11
+ "version": "25.1.0-develop.20",
12
12
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-dropdowns",
3
- "version": "25.1.0-develop.19",
3
+ "version": "25.1.0-develop.20",
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",
@@ -132,7 +132,7 @@
132
132
  "package": {
133
133
  "productName": "Kendo UI for Angular",
134
134
  "productCode": "KENDOUIANGULAR",
135
- "publishDate": 1787936927,
135
+ "publishDate": 1787938403,
136
136
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
137
137
  }
138
138
  },
@@ -143,19 +143,19 @@
143
143
  "@angular/forms": "20 - 22",
144
144
  "@angular/platform-browser": "20 - 22",
145
145
  "@progress/kendo-licensing": "^1.11.0",
146
- "@progress/kendo-angular-common": "25.1.0-develop.19",
147
- "@progress/kendo-angular-utils": "25.1.0-develop.19",
148
- "@progress/kendo-angular-l10n": "25.1.0-develop.19",
149
- "@progress/kendo-angular-navigation": "25.1.0-develop.19",
150
- "@progress/kendo-angular-popup": "25.1.0-develop.19",
151
- "@progress/kendo-angular-icons": "25.1.0-develop.19",
152
- "@progress/kendo-angular-inputs": "25.1.0-develop.19",
153
- "@progress/kendo-angular-treeview": "25.1.0-develop.19",
146
+ "@progress/kendo-angular-common": "25.1.0-develop.20",
147
+ "@progress/kendo-angular-utils": "25.1.0-develop.20",
148
+ "@progress/kendo-angular-l10n": "25.1.0-develop.20",
149
+ "@progress/kendo-angular-navigation": "25.1.0-develop.20",
150
+ "@progress/kendo-angular-popup": "25.1.0-develop.20",
151
+ "@progress/kendo-angular-icons": "25.1.0-develop.20",
152
+ "@progress/kendo-angular-inputs": "25.1.0-develop.20",
153
+ "@progress/kendo-angular-treeview": "25.1.0-develop.20",
154
154
  "rxjs": "^6.5.3 || ^7.0.0"
155
155
  },
156
156
  "dependencies": {
157
157
  "tslib": "^2.3.1",
158
- "@progress/kendo-angular-schematics": "25.1.0-develop.19",
158
+ "@progress/kendo-angular-schematics": "25.1.0-develop.20",
159
159
  "@progress/kendo-common": "^1.0.1"
160
160
  },
161
161
  "schematics": "./schematics/collection.json",
@@ -9,9 +9,9 @@ const schematics_1 = require("@angular-devkit/schematics");
9
9
  function default_1(options) {
10
10
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'DropDownsModule', package: 'dropdowns', peerDependencies: {
11
11
  // peers of the treeview
12
- '@progress/kendo-angular-inputs': '25.1.0-develop.19',
12
+ '@progress/kendo-angular-inputs': '25.1.0-develop.20',
13
13
  // peers of inputs
14
- '@progress/kendo-angular-intl': '25.1.0-develop.19',
14
+ '@progress/kendo-angular-intl': '25.1.0-develop.20',
15
15
  '@progress/kendo-drawing': '^1.17.2',
16
16
  // Peer dependency of icons
17
17
  '@progress/kendo-svg-icons': '^4.0.0'