@syncfusion/ej2-angular-dropdowns 32.2.8 → 32.2.9
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
|
@@ -6,7 +6,15 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
-
- `#
|
|
9
|
+
- `#I812495` - The issue with programmatic value binding in a virtualization dropdown has been fixed.
|
|
10
|
+
|
|
11
|
+
### MultiSelect
|
|
12
|
+
|
|
13
|
+
#### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- `#I808111` - Fixed an issue where an empty popup appeared after selecting all items by properly closing the popup when all values are selected.
|
|
16
|
+
|
|
17
|
+
- `#I816580` - Fixed the issue where the `selectedAll` event was not providing the complete data from the value property.
|
|
10
18
|
|
|
11
19
|
## 32.2.7 (2026-02-24)
|
|
12
20
|
|
|
@@ -2535,7 +2543,15 @@ DropDownList component contains a list of predefined values from which a single
|
|
|
2535
2543
|
|
|
2536
2544
|
- **Templates** - Allows customizing the list items, selected value, header, footer, category group header, and no records content.
|
|
2537
2545
|
|
|
2538
|
-
- **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.2.
|
|
2546
|
+
- **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.2.8 (2025-12-22)
|
|
2547
|
+
|
|
2548
|
+
### DropDownList
|
|
2549
|
+
|
|
2550
|
+
#### Bug Fixes
|
|
2551
|
+
|
|
2552
|
+
- `#I814842` - Resolved an issue where dropdownlist appeared beneath Angular `dialogs` in Angular 21.
|
|
2553
|
+
|
|
2554
|
+
## 32.2.3 (2026-02-05)
|
|
2539
2555
|
|
|
2540
2556
|
### MultiSelect
|
|
2541
2557
|
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-angular-dropdowns",
|
|
3
|
-
"version": "32.2.
|
|
3
|
+
"version": "32.2.9",
|
|
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.2.
|
|
9
|
+
"@syncfusion/ej2-base": "~32.2.9",
|
|
10
10
|
"@syncfusion/ej2-angular-base": "~32.2.3",
|
|
11
|
-
"@syncfusion/ej2-dropdowns": "32.2.
|
|
11
|
+
"@syncfusion/ej2-dropdowns": "32.2.9"
|
|
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.2.
|
|
4
|
+
exports.pkgVer = '^32.2.9';
|
|
5
5
|
exports.moduleName = 'DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule';
|
|
6
|
-
exports.themeVer = '~32.2.
|
|
6
|
+
exports.themeVer = '~32.2.9';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export const pkgName = '@syncfusion/ej2-angular-dropdowns';
|
|
2
|
-
export const pkgVer = '^32.2.
|
|
2
|
+
export const pkgVer = '^32.2.9';
|
|
3
3
|
export const moduleName = 'DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule';
|
|
4
|
-
export const themeVer = '~32.2.
|
|
4
|
+
export const themeVer = '~32.2.9';
|