@progress/kendo-angular-dropdowns 25.0.0-develop.15 → 25.0.0-develop.17

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: 1785488867,
41
- version: '25.0.0-develop.15',
40
+ publishDate: 1785493158,
41
+ version: '25.0.0-develop.17',
42
42
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
43
43
  };
44
44
 
@@ -10078,8 +10078,9 @@ class MultiSelectComponent {
10078
10078
  isUntouched(this.wrapper.nativeElement) ||
10079
10079
  this.formControl?.updateOn === 'blur') {
10080
10080
  this._zone.run(() => {
10081
+ const preserveFilter = this.allowCustom && !!this.text;
10081
10082
  this.closePopup();
10082
- if (!(this.isOpen && this.allowCustom)) {
10083
+ if (!preserveFilter) {
10083
10084
  this.clearFilter();
10084
10085
  }
10085
10086
  this.inputBlur.emit();
@@ -11765,8 +11766,9 @@ class MultiSelectComponent {
11765
11766
  hasObservers(this.close) ||
11766
11767
  isUntouched(this.wrapper.nativeElement)) {
11767
11768
  this._zone.run(() => {
11769
+ const preserveFilter = this.allowCustom && !!this.text;
11768
11770
  this.closePopup();
11769
- if (!(this.isOpen && this.allowCustom)) {
11771
+ if (!preserveFilter) {
11770
11772
  this.clearFilter();
11771
11773
  }
11772
11774
  this.onBlur.emit();
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1785488867,
11
- "version": "25.0.0-develop.15",
10
+ "publishDate": 1785493158,
11
+ "version": "25.0.0-develop.17",
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.0.0-develop.15",
3
+ "version": "25.0.0-develop.17",
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",
@@ -121,7 +121,7 @@
121
121
  "package": {
122
122
  "productName": "Kendo UI for Angular",
123
123
  "productCode": "KENDOUIANGULAR",
124
- "publishDate": 1785488867,
124
+ "publishDate": 1785493158,
125
125
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
126
126
  }
127
127
  },
@@ -132,19 +132,19 @@
132
132
  "@angular/forms": "20 - 22",
133
133
  "@angular/platform-browser": "20 - 22",
134
134
  "@progress/kendo-licensing": "^1.11.0",
135
- "@progress/kendo-angular-common": "25.0.0-develop.15",
136
- "@progress/kendo-angular-utils": "25.0.0-develop.15",
137
- "@progress/kendo-angular-l10n": "25.0.0-develop.15",
138
- "@progress/kendo-angular-navigation": "25.0.0-develop.15",
139
- "@progress/kendo-angular-popup": "25.0.0-develop.15",
140
- "@progress/kendo-angular-icons": "25.0.0-develop.15",
141
- "@progress/kendo-angular-inputs": "25.0.0-develop.15",
142
- "@progress/kendo-angular-treeview": "25.0.0-develop.15",
135
+ "@progress/kendo-angular-common": "25.0.0-develop.17",
136
+ "@progress/kendo-angular-utils": "25.0.0-develop.17",
137
+ "@progress/kendo-angular-l10n": "25.0.0-develop.17",
138
+ "@progress/kendo-angular-navigation": "25.0.0-develop.17",
139
+ "@progress/kendo-angular-popup": "25.0.0-develop.17",
140
+ "@progress/kendo-angular-icons": "25.0.0-develop.17",
141
+ "@progress/kendo-angular-inputs": "25.0.0-develop.17",
142
+ "@progress/kendo-angular-treeview": "25.0.0-develop.17",
143
143
  "rxjs": "^6.5.3 || ^7.0.0"
144
144
  },
145
145
  "dependencies": {
146
146
  "tslib": "^2.3.1",
147
- "@progress/kendo-angular-schematics": "25.0.0-develop.15",
147
+ "@progress/kendo-angular-schematics": "25.0.0-develop.17",
148
148
  "@progress/kendo-common": "^1.0.1"
149
149
  },
150
150
  "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.0.0-develop.15',
12
+ '@progress/kendo-angular-inputs': '25.0.0-develop.17',
13
13
  // peers of inputs
14
- '@progress/kendo-angular-intl': '25.0.0-develop.15',
14
+ '@progress/kendo-angular-intl': '25.0.0-develop.17',
15
15
  '@progress/kendo-drawing': '^1.17.2',
16
16
  // Peer dependency of icons
17
17
  '@progress/kendo-svg-icons': '^4.0.0'