@syncfusion/ej2-angular-dropdowns 33.1.44 → 33.1.46
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,11 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
### DropDownTree
|
|
6
|
+
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- `#I816579` - Resolved a console error that occurred when filtering in the DropDown Tree component with node IDs containing the hash `#` symbol.
|
|
10
|
+
|
|
5
11
|
### ComboBox
|
|
6
12
|
|
|
7
13
|
#### Bug Fixes
|
|
8
14
|
|
|
9
|
-
- `#
|
|
15
|
+
- `#I815337` - Fixed an issue where Accessibility violations when using ComboBox component.
|
|
16
|
+
|
|
17
|
+
### MultiSelect
|
|
18
|
+
|
|
19
|
+
#### Bug Fixes
|
|
20
|
+
|
|
21
|
+
- `#I810920` - Fixed an issue related to accessibility gaps in Multiselect Component.
|
|
22
|
+
|
|
23
|
+
- `#I815337` - Fixed an issue where Accessibility violations when using Multiselect component.
|
|
24
|
+
|
|
25
|
+
- `#I812150` - Fixed an issue where, when dynamically selecting all records, the popup UI displayed a skeleton loader instead of the actual list items.
|
|
10
26
|
|
|
11
27
|
## 28.2.9 (2025-03-04)
|
|
12
28
|
|
|
@@ -2430,7 +2446,15 @@ DropDownList component contains a list of predefined values from which a single
|
|
|
2430
2446
|
|
|
2431
2447
|
- **Templates** - Allows customizing the list items, selected value, header, footer, category group header, and no records content.
|
|
2432
2448
|
|
|
2433
|
-
- **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.##
|
|
2449
|
+
- **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.## 33.1.44 (2026-03-16)
|
|
2450
|
+
|
|
2451
|
+
### ComboBox
|
|
2452
|
+
|
|
2453
|
+
#### Bug Fixes
|
|
2454
|
+
|
|
2455
|
+
- `#I811858` - Fixed an issue where the span element was removed during dynamic placeholder updates, affecting the label structure.
|
|
2456
|
+
|
|
2457
|
+
## 29.1.33 (2025-03-25)
|
|
2434
2458
|
|
|
2435
2459
|
### Mention
|
|
2436
2460
|
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-angular-dropdowns",
|
|
3
|
-
"version": "33.1.
|
|
3
|
+
"version": "33.1.46",
|
|
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": "~33.1.
|
|
10
|
-
"@syncfusion/ej2-angular-base": "~33.1.
|
|
11
|
-
"@syncfusion/ej2-dropdowns": "33.1.
|
|
9
|
+
"@syncfusion/ej2-base": "~33.1.45",
|
|
10
|
+
"@syncfusion/ej2-angular-base": "~33.1.46",
|
|
11
|
+
"@syncfusion/ej2-dropdowns": "33.1.46"
|
|
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 = '^33.1.
|
|
4
|
+
exports.pkgVer = '^33.1.46';
|
|
5
5
|
exports.moduleName = 'DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule';
|
|
6
|
-
exports.themeVer = '~33.1.
|
|
6
|
+
exports.themeVer = '~33.1.46';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export const pkgName = '@syncfusion/ej2-angular-dropdowns';
|
|
2
|
-
export const pkgVer = '^33.1.
|
|
2
|
+
export const pkgVer = '^33.1.46';
|
|
3
3
|
export const moduleName = 'DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule';
|
|
4
|
-
export const themeVer = '~33.1.
|
|
4
|
+
export const themeVer = '~33.1.46';
|