@syncfusion/ej2-angular-dropdowns 32.1.25 → 32.2.3
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.
package/CHANGELOG.md
CHANGED
|
@@ -2,17 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
### ComboBox
|
|
6
|
-
|
|
7
|
-
#### Bug Fixes
|
|
8
|
-
|
|
9
|
-
- `#I801682` - Resolved the issue where arrow key navigation failed when Autofill was enabled during filtering.
|
|
10
|
-
|
|
11
5
|
### MultiSelect
|
|
12
6
|
|
|
13
7
|
#### Bug Fixes
|
|
14
8
|
|
|
15
|
-
- `#
|
|
9
|
+
- `#I694939` - Fixed an issue where preselected values were not displayed correctly in Angular when using virtualization with checkbox mode.
|
|
16
10
|
|
|
17
11
|
## 32.1.23 (2026-01-13)
|
|
18
12
|
|
|
@@ -2484,7 +2478,21 @@ DropDownList component contains a list of predefined values from which a single
|
|
|
2484
2478
|
|
|
2485
2479
|
- **Templates** - Allows customizing the list items, selected value, header, footer, category group header, and no records content.
|
|
2486
2480
|
|
|
2487
|
-
- **Accessibility** - Provided with built-in accessibility support which helps to access all the DropDownList component features through the keyboard, screen readers, or other assistive technology devices.## 32.1.
|
|
2481
|
+
- **Accessibility** - Provided with built-in accessibility support which helps to access all the DropDownList component features through the keyboard, screen readers, or other assistive technology devices.## 32.1.25 (2026-01-27)
|
|
2482
|
+
|
|
2483
|
+
### ComboBox
|
|
2484
|
+
|
|
2485
|
+
#### Bug Fixes
|
|
2486
|
+
|
|
2487
|
+
- `#I801682` - Resolved the issue where arrow key navigation failed when Autofill was enabled during filtering.
|
|
2488
|
+
|
|
2489
|
+
### MultiSelect
|
|
2490
|
+
|
|
2491
|
+
#### Bug Fixes
|
|
2492
|
+
|
|
2493
|
+
- `#I798150` - Resolved the issue where the Multiselect popup did not close when clicking outside while using the `showPopup` method.
|
|
2494
|
+
|
|
2495
|
+
## 32.1.24 (2026-01-20)
|
|
2488
2496
|
|
|
2489
2497
|
### ComboBox
|
|
2490
2498
|
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-angular-dropdowns",
|
|
3
|
-
"version": "32.
|
|
3
|
+
"version": "32.2.3",
|
|
4
4
|
"description": "Essential JS 2 DropDown Components for Angular",
|
|
5
5
|
"author": "Syncfusion Inc.",
|
|
6
6
|
"license": "SEE LICENSE IN license",
|
|
7
7
|
"schematics": "./schematics/collection.json",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@syncfusion/ej2-base": "~32.
|
|
10
|
-
"@syncfusion/ej2-angular-base": "~32.
|
|
11
|
-
"@syncfusion/ej2-dropdowns": "32.
|
|
9
|
+
"@syncfusion/ej2-base": "~32.2.3",
|
|
10
|
+
"@syncfusion/ej2-angular-base": "~32.2.3",
|
|
11
|
+
"@syncfusion/ej2-dropdowns": "32.2.3"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
14
14
|
"angular",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-dropdowns';
|
|
4
|
-
exports.pkgVer = '^32.
|
|
4
|
+
exports.pkgVer = '^32.2.3';
|
|
5
5
|
exports.moduleName = 'DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule';
|
|
6
|
-
exports.themeVer = '~32.
|
|
6
|
+
exports.themeVer = '~32.2.3';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export const pkgName = '@syncfusion/ej2-angular-dropdowns';
|
|
2
|
-
export const pkgVer = '^32.
|
|
2
|
+
export const pkgVer = '^32.2.3';
|
|
3
3
|
export const moduleName = 'DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule';
|
|
4
|
-
export const themeVer = '~32.
|
|
4
|
+
export const themeVer = '~32.2.3';
|