@syncfusion/ej2-angular-dropdowns 32.2.9 → 33.1.44

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,124 +2,11 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
- ### DropDownList
6
-
7
- #### Bug Fixes
8
-
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.
18
-
19
- ## 32.2.7 (2026-02-24)
20
-
21
- ### DropDownTree
22
-
23
- #### Feature
24
-
25
- - `#I803243` - Introduced the new `disableHtmlEncode` property to control how text content is rendered in the Dropdown Tree. When set to `true`, the component will render raw text exactly as provided (including HTML tags or special characters) without encoding or truncation. To preserve and render raw HTML content correctly, `enableHtmlSanitizer` must also be set to `false`. This update provides greater flexibility in displaying literal text and HTML content within Dropdown Tree nodes.
26
-
27
- **Example Usage**
28
-
29
- ```typescript
30
- import { DropDownTree } from '@syncfusion/ej2-dropdowns';
31
- let data: Object[] = [ { id: '1', name: 'Australia' }, { id: '2', name: 'New<york' }, { id: '3', name: 'Normal Text' } ];
32
- //Initialize DropDownTree control
33
- let dropDownTreeObj: DropDownTree = new DropDownTree({
34
- fields: { dataSource: data, value: 'id', text: 'name' },
35
- disableHtmlEncode: true,
36
- enableHtmlSanitizer: false
37
- });
38
- //Render initialized DropDownTree
39
- dropDownTreeObj.appendTo('#ddt');
40
- ```
41
-
42
- ### MultiSelect
43
-
44
- #### Bug Fixes
45
-
46
- - `#I809049` - Resolved a memory leak issue that occurred when using Angular Material Dialog in combination with Syncfusion MultiSelect.
47
-
48
- ### Mention
49
-
50
- #### Bug Fixes
51
-
52
- - `#I809049` - Resolved a memory leak issue that occurred when using Angular Material Dialog in combination with Syncfusion Mention.
53
-
54
- - `#I811155` - Resolved an issue where mention appeared beneath Angular `dialogs` in Angular 21.
55
-
56
- ### ListBox
57
-
58
- #### Bug Fixes
59
-
60
- - `#I809049` - Resolved a memory leak issue that occurred when using Angular Material Dialog in combination with Syncfusion ListBox.
61
-
62
- ### DropDownList
63
-
64
- #### Bug Fixes
65
-
66
- - `#I794030` - Resolved a memory leak issue that occurred when using Angular Material Dialog in combination with Syncfusion DropDownList.
67
-
68
- ## 32.2.4 (2026-02-11)
69
-
70
- ### DropDownList
71
-
72
- #### Bug fixes
73
-
74
- - `#I801864` - The issue with programmatic value binding in a virtualization dropdown has been fixed.
75
-
76
- ## 32.1.23 (2026-01-13)
77
-
78
- ### MultiSelect
79
-
80
- #### Bug Fixes
81
-
82
- - `#I792156` - Resolved an issue where the multi-select search filter input did not work on the first attempt when Narrator was enabled.
83
-
84
- ## 32.1.22 (2026-01-06)
85
-
86
- ### Mention
87
-
88
- #### Bug Fixes
89
-
90
- - `#I797154` - Resolved an issue where the Mention component popup was partially hidden off-screen in mobile view, ensuring the popup is fully visible within the viewport.
91
-
92
- - `#I796358` - Fixed the error that occurred when scrolling after rendering the 'No Records Found' mention popup.
93
-
94
- - `#I757895` - Resolved the issue where the first backspace key press did not delete any text.
95
-
96
- ### MultiSelect
97
-
98
- #### Bug Fixes
99
-
100
- - `#I795891` - Fixed an issue where the MultiSelect Dropdown with virtualization failed at a specific record count when scrolling up and down after selecting an item.
101
-
102
- ## 32.1.21 (2025-12-30)
103
-
104
- ### Mention
105
-
106
- #### Bug Fixes
107
-
108
- - `#F197891` - Resolved the issue where the popup closes immediately after typing '@a'.
109
-
110
- ### MultiSelect
111
-
112
- #### Bug Fixes
113
-
114
- - `#I795891` - Fixed an issue where the MultiSelect Dropdown with virtualization failed at a specific record count and addressed the item reorder problem.
115
-
116
- ## 32.1.20 (2025-12-23)
117
-
118
- ### DropDownTree
5
+ ### ComboBox
119
6
 
120
7
  #### Bug Fixes
121
8
 
122
- - `#I778358` - The issue with pre-filtered selections cleared When click on the close icon in Dropdown Tree Component has been resolved.
9
+ - `#I811858` - Fixed an issue where the span element was removed during dynamic placeholder updates, affecting the label structure.
123
10
 
124
11
  ## 28.2.9 (2025-03-04)
125
12
 
@@ -2543,45 +2430,7 @@ DropDownList component contains a list of predefined values from which a single
2543
2430
 
2544
2431
  - **Templates** - Allows customizing the list items, selected value, header, footer, category group header, and no records content.
2545
2432
 
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)
2555
-
2556
- ### MultiSelect
2557
-
2558
- #### Bug Fixes
2559
-
2560
- - `#I694939` - Fixed an issue where preselected values were not displayed correctly in Angular when using virtualization with checkbox mode.
2561
-
2562
- ## 32.1.25 (2026-01-27)
2563
-
2564
- ### ComboBox
2565
-
2566
- #### Bug Fixes
2567
-
2568
- - `#I801682` - Resolved the issue where arrow key navigation failed when Autofill was enabled during filtering.
2569
-
2570
- ### MultiSelect
2571
-
2572
- #### Bug Fixes
2573
-
2574
- - `#I798150` - Resolved the issue where the Multiselect popup did not close when clicking outside while using the `showPopup` method.
2575
-
2576
- ## 32.1.24 (2026-01-20)
2577
-
2578
- ### ComboBox
2579
-
2580
- #### Bug Fixes
2581
-
2582
- - `#I794030` - Resolved a memory leak issue that occurred when using Angular Material Dialog in combination with Syncfusion ComboBox.
2583
-
2584
- ## 29.1.33 (2025-03-25)
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.## 29.1.33 (2025-03-25)
2585
2434
 
2586
2435
  ### Mention
2587
2436
 
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@syncfusion/ej2-angular-dropdowns",
3
- "version": "32.2.9",
3
+ "version": "33.1.44",
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",
10
- "@syncfusion/ej2-angular-base": "~32.2.3",
11
- "@syncfusion/ej2-dropdowns": "32.2.9"
9
+ "@syncfusion/ej2-base": "~33.1.44",
10
+ "@syncfusion/ej2-angular-base": "~33.1.44",
11
+ "@syncfusion/ej2-dropdowns": "33.1.44"
12
12
  },
13
13
  "keywords": [
14
14
  "angular",
@@ -1,4 +1,4 @@
1
1
  export declare const pkgName = "@syncfusion/ej2-angular-dropdowns";
2
- export declare const pkgVer = "^18.67.0";
2
+ export declare const pkgVer = "^18.66.23";
3
3
  export declare const moduleName = "DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule";
4
- export declare const themeVer = "~18.67.0";
4
+ export declare const themeVer = "~18.66.23";
@@ -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.9';
4
+ exports.pkgVer = '^33.1.44';
5
5
  exports.moduleName = 'DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule';
6
- exports.themeVer = '~32.2.9';
6
+ exports.themeVer = '~33.1.44';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-dropdowns';
2
- export const pkgVer = '^32.2.9';
2
+ export const pkgVer = '^33.1.44';
3
3
  export const moduleName = 'DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule';
4
- export const themeVer = '~32.2.9';
4
+ export const themeVer = '~33.1.44';