@syncfusion/ej2-dropdowns 24.2.8 → 25.1.35
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 +23 -150
- package/dist/ej2-dropdowns.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +2049 -528
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +2072 -533
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +2 -2
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +13 -13
- package/src/auto-complete/auto-complete-model.d.ts +3 -1
- package/src/auto-complete/auto-complete.d.ts +2 -0
- package/src/auto-complete/auto-complete.js +51 -6
- package/src/combo-box/combo-box-model.d.ts +11 -2
- package/src/combo-box/combo-box.d.ts +10 -2
- package/src/combo-box/combo-box.js +75 -16
- package/src/common/interface.d.ts +32 -0
- package/src/common/virtual-scroll.d.ts +1 -3
- package/src/common/virtual-scroll.js +157 -27
- package/src/drop-down-base/drop-down-base-model.d.ts +1 -1
- package/src/drop-down-base/drop-down-base.d.ts +65 -5
- package/src/drop-down-base/drop-down-base.js +242 -25
- package/src/drop-down-list/drop-down-list-model.d.ts +10 -1
- package/src/drop-down-list/drop-down-list.d.ts +16 -51
- package/src/drop-down-list/drop-down-list.js +180 -217
- package/src/drop-down-tree/drop-down-tree-model.d.ts +16 -12
- package/src/drop-down-tree/drop-down-tree.d.ts +13 -3
- package/src/drop-down-tree/drop-down-tree.js +55 -49
- package/src/global.js +1 -1
- package/src/list-box/list-box.js +9 -4
- package/src/mention/mention.d.ts +2 -0
- package/src/mention/mention.js +21 -9
- package/src/multi-select/checkbox-selection.js +8 -2
- package/src/multi-select/float-label.d.ts +5 -5
- package/src/multi-select/index.d.ts +1 -0
- package/src/multi-select/index.js +1 -0
- package/src/multi-select/interface.d.ts +1 -0
- package/src/multi-select/multi-select-model.d.ts +17 -2
- package/src/multi-select/multi-select.d.ts +34 -4
- package/src/multi-select/multi-select.js +1271 -173
- package/styles/auto-complete/_bds-definition.scss +2 -0
- package/styles/bootstrap-dark.css +8 -2
- package/styles/bootstrap.css +8 -2
- package/styles/bootstrap4.css +3 -2
- package/styles/bootstrap5-dark.css +3 -2
- package/styles/bootstrap5.css +3 -2
- package/styles/combo-box/_bds-definition.scss +2 -0
- package/styles/drop-down-base/_bds-definition.scss +134 -0
- package/styles/drop-down-list/_bds-definition.scss +134 -0
- package/styles/drop-down-list/_layout.scss +1 -1
- package/styles/drop-down-list/bootstrap-dark.css +1 -1
- package/styles/drop-down-list/bootstrap.css +1 -1
- package/styles/drop-down-list/bootstrap4.css +1 -1
- package/styles/drop-down-list/bootstrap5-dark.css +1 -1
- package/styles/drop-down-list/bootstrap5.css +1 -1
- package/styles/drop-down-list/fabric-dark.css +1 -1
- package/styles/drop-down-list/fabric.css +1 -1
- package/styles/drop-down-list/fluent-dark.css +1 -1
- package/styles/drop-down-list/fluent.css +1 -1
- package/styles/drop-down-list/highcontrast-light.css +1 -1
- package/styles/drop-down-list/highcontrast.css +1 -1
- package/styles/drop-down-list/icons/_bds.scss +14 -0
- package/styles/drop-down-list/material-dark.css +1 -1
- package/styles/drop-down-list/material.css +1 -1
- package/styles/drop-down-list/material3-dark.css +1 -1
- package/styles/drop-down-list/material3.css +1 -1
- package/styles/drop-down-list/tailwind-dark.css +1 -1
- package/styles/drop-down-list/tailwind.css +1 -1
- package/styles/drop-down-tree/_bds-definition.scss +61 -0
- package/styles/drop-down-tree/icons/_bds.scss +11 -0
- package/styles/fabric-dark.css +4 -2
- package/styles/fabric.css +4 -2
- package/styles/fluent-dark.css +8 -2
- package/styles/fluent.css +8 -2
- package/styles/highcontrast-light.css +4 -2
- package/styles/highcontrast.css +4 -2
- package/styles/list-box/_bds-definition.scss +136 -0
- package/styles/list-box/icons/_bds.scss +25 -0
- package/styles/material-dark.css +3 -2
- package/styles/material.css +3 -2
- package/styles/material3-dark.css +3 -2
- package/styles/material3.css +3 -2
- package/styles/mention/_bds-definition.scss +1 -0
- package/styles/multi-select/_bds-definition.scss +235 -0
- package/styles/multi-select/_bootstrap-dark-definition.scss +4 -0
- package/styles/multi-select/_bootstrap-definition.scss +4 -0
- package/styles/multi-select/_fluent-definition.scss +5 -0
- package/styles/multi-select/_layout.scss +8 -1
- package/styles/multi-select/bootstrap-dark.css +7 -1
- package/styles/multi-select/bootstrap.css +7 -1
- package/styles/multi-select/bootstrap4.css +2 -1
- package/styles/multi-select/bootstrap5-dark.css +2 -1
- package/styles/multi-select/bootstrap5.css +2 -1
- package/styles/multi-select/fabric-dark.css +3 -1
- package/styles/multi-select/fabric.css +3 -1
- package/styles/multi-select/fluent-dark.css +7 -1
- package/styles/multi-select/fluent.css +7 -1
- package/styles/multi-select/highcontrast-light.css +3 -1
- package/styles/multi-select/highcontrast.css +3 -1
- package/styles/multi-select/icons/_bds.scss +26 -0
- package/styles/multi-select/material-dark.css +2 -1
- package/styles/multi-select/material.css +2 -1
- package/styles/multi-select/material3-dark.css +2 -1
- package/styles/multi-select/material3.css +2 -1
- package/styles/multi-select/tailwind-dark.css +2 -1
- package/styles/multi-select/tailwind.css +2 -1
- package/styles/tailwind-dark.css +3 -2
- package/styles/tailwind.css +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,155 +2,28 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
### Mention
|
|
6
|
-
|
|
7
|
-
#### Bug Fixes
|
|
8
|
-
|
|
9
|
-
- `#I539496` - Fixed an issue where the mentioned value was not being updated to the target element when using mouse interaction.
|
|
10
|
-
|
|
11
|
-
## 24.2.7 (2024-02-20)
|
|
12
|
-
|
|
13
|
-
### Mention
|
|
14
|
-
|
|
15
|
-
#### Bug Fixes
|
|
16
|
-
|
|
17
|
-
-`#I556815`- Fixed an issue where console error that occurred when using `iframe` along with mention.
|
|
18
|
-
|
|
19
|
-
### MultiSelect
|
|
20
|
-
|
|
21
|
-
#### Bug Fixes
|
|
22
|
-
|
|
23
|
-
- `#I553564` - Fixed an issue where the Change Event was triggering multiple times when unCheck all items.
|
|
24
|
-
|
|
25
|
-
## 24.2.6 (2024-02-15)
|
|
26
|
-
|
|
27
|
-
### ListBox
|
|
28
|
-
|
|
29
|
-
- `#I548014` - Issue with "Reduce the time taken to move records in a dual listbox when using moveTo/moveFrom toolbar click" has been resolved.
|
|
30
|
-
|
|
31
|
-
### Mention
|
|
32
|
-
|
|
33
|
-
#### Bug Fixes
|
|
34
|
-
|
|
35
|
-
-`#I528014`- Issue with 'change' event is triggered while filtering in Angular.
|
|
36
|
-
|
|
37
|
-
- `#F186429` - Fixed an issue where the mention popup was not aligned properly when the mention target was set as `iframe`.
|
|
38
|
-
|
|
39
|
-
## 24.2.5 (2024-02-13)
|
|
40
|
-
|
|
41
|
-
### DropdownList
|
|
42
|
-
|
|
43
|
-
#### Bug Fixes
|
|
44
|
-
|
|
45
|
-
- `#F49655` - Fixed an issue where assigning null to a value, text and index property resulting in errors.
|
|
46
|
-
|
|
47
|
-
- `#I546769` - Fixed an issue where the `isInteracted` property return false after selecting a value using focus out.
|
|
48
|
-
|
|
49
|
-
## 24.2.4 (2024-02-06)
|
|
50
|
-
|
|
51
|
-
### ListBox
|
|
52
|
-
|
|
53
|
-
-`#I528014`- Issue with 'change' event is triggered while filtering in Angular.
|
|
54
|
-
|
|
55
|
-
### DropdownList
|
|
56
|
-
|
|
57
|
-
#### Bug Fixes
|
|
58
|
-
|
|
59
|
-
- `#I545534` - Fixed an issue where the Popup Element was not being destroyed when rendering inside the In-place editor.
|
|
60
|
-
|
|
61
|
-
### MultiSelect
|
|
62
|
-
|
|
63
|
-
#### Bug Fixes
|
|
64
|
-
|
|
65
|
-
- `#I534853` - Fixed an issue where a console exception occurred when typing a custom value in the input field.
|
|
66
|
-
|
|
67
|
-
## 24.1.47 (2024-01-23)
|
|
68
|
-
|
|
69
|
-
### ListBox
|
|
70
|
-
|
|
71
|
-
#### Bug Fixes
|
|
72
|
-
|
|
73
|
-
- `#I514409` - Issue with "Filtering focus not removed in listbox while clearing and click anywhere" has been resolved.
|
|
74
|
-
|
|
75
5
|
### ComboBox
|
|
76
6
|
|
|
77
7
|
#### Bug Fixes
|
|
78
8
|
|
|
79
|
-
- `#
|
|
80
|
-
|
|
81
|
-
- `#F49952` - Fixed an issue where the combobox change event was not being triggered when clear the value using backspace.
|
|
82
|
-
|
|
83
|
-
## 24.1.46 (2024-01-17)
|
|
84
|
-
|
|
85
|
-
### MultiSelect
|
|
86
|
-
|
|
87
|
-
#### Bug Fixes
|
|
88
|
-
|
|
89
|
-
- `#I535771` - Fixed issue where Z-index was not being added to the popup element when initially opening the popup.
|
|
9
|
+
- `#I560957` - Resolved issue with "Combo Box not possible to update the datasource dynamically".
|
|
90
10
|
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
### Mention
|
|
94
|
-
|
|
95
|
-
#### Bug Fixes
|
|
96
|
-
|
|
97
|
-
- `#I534515` - Fixed an issue where unable to add image caption in `RTE` using the Mention integration.
|
|
98
|
-
|
|
99
|
-
- `#I530749` - Now, the Change event triggers properly with the mention list in Rich Text Editor.
|
|
100
|
-
|
|
101
|
-
## 24.1.44 (2024-01-03)
|
|
102
|
-
|
|
103
|
-
### DropDownTree
|
|
11
|
+
### Dropdown Tree
|
|
104
12
|
|
|
105
13
|
#### Bug Fixes
|
|
106
14
|
|
|
107
|
-
- `#
|
|
108
|
-
|
|
109
|
-
### DropdownList
|
|
110
|
-
|
|
111
|
-
#### Bug Fixes
|
|
15
|
+
- `#I558972` - Issue with "focus from the first item when items are selected in the Dropdown Tree component" has been resolved.
|
|
112
16
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
- `#I531994` - Fixed the issue where pressing the space key after focusing on a dropdown list would cause an unexpected page scroll.
|
|
116
|
-
|
|
117
|
-
### Mention
|
|
118
|
-
|
|
119
|
-
#### Bug Fixes
|
|
120
|
-
|
|
121
|
-
- `#I530713` - Fixed issue where users were unable to access the popup after pressing Shift + Enter.
|
|
122
|
-
|
|
123
|
-
- `#I8411` - Fixed an issue where list values were displayed immediately after typing instead of waiting the minimum length was reached.
|
|
17
|
+
#### New Features
|
|
124
18
|
|
|
125
|
-
|
|
19
|
+
- `#I322379`,`#I521440` - The Dropdown Tree component has been updated to render the popup in the DOM dynamically, significantly improving performance. If you need the popup to render during the initial load, you can set the 'destroyPopupOnHide' property to 'false'.
|
|
126
20
|
|
|
127
21
|
### ListBox
|
|
128
22
|
|
|
129
23
|
#### Bug Fixes
|
|
130
24
|
|
|
131
|
-
- `#I520132` - Issue with "The listbox value was not updated properly while filtering the data source when we place within form" has been resolved.
|
|
132
25
|
- `#I522090` - Issue with "Keyboard action is not working properly in the ListBox filter" has been resolved.
|
|
133
26
|
|
|
134
|
-
### DropdownList
|
|
135
|
-
|
|
136
|
-
#### Bug Fixes
|
|
137
|
-
|
|
138
|
-
- `#I523994` - Resolved the issue where the NVDA Reader was not reading the list item when filtering is enabled.
|
|
139
|
-
|
|
140
|
-
### AutoComplete
|
|
141
|
-
|
|
142
|
-
#### Bug Fixes
|
|
143
|
-
|
|
144
|
-
- `#I528524` - Fixed an issue where the Change Event was not triggered when pressing the enter key after preventing the Popup from opening.
|
|
145
|
-
|
|
146
|
-
## 24.1.41 (2023-12-18)
|
|
147
|
-
|
|
148
|
-
### DropDownTree
|
|
149
|
-
|
|
150
|
-
#### Bug Fixes
|
|
151
|
-
|
|
152
|
-
- `#I522936` - The issue with the htmlAttributes field class value in the Dropdown Tree component has been resolved.
|
|
153
|
-
|
|
154
27
|
### ListBox
|
|
155
28
|
|
|
156
29
|
#### Bug Fixes
|
|
@@ -269,7 +142,7 @@
|
|
|
269
142
|
|
|
270
143
|
- `#I343860` - Issue with "list items are not read by the NVDA screen reader" has been resolved.
|
|
271
144
|
|
|
272
|
-
###
|
|
145
|
+
### Dropdown Tree
|
|
273
146
|
|
|
274
147
|
#### Bug Fixes
|
|
275
148
|
|
|
@@ -285,7 +158,7 @@
|
|
|
285
158
|
|
|
286
159
|
## 19.3.53 (2021-11-12)
|
|
287
160
|
|
|
288
|
-
###
|
|
161
|
+
### Dropdown Tree
|
|
289
162
|
|
|
290
163
|
#### Bug Fixes
|
|
291
164
|
|
|
@@ -293,7 +166,7 @@
|
|
|
293
166
|
|
|
294
167
|
## 19.3.48 (2021-11-02)
|
|
295
168
|
|
|
296
|
-
###
|
|
169
|
+
### Dropdown Tree
|
|
297
170
|
|
|
298
171
|
#### Bug Fixes
|
|
299
172
|
|
|
@@ -301,7 +174,7 @@
|
|
|
301
174
|
|
|
302
175
|
## 19.3.47 (2021-10-26)
|
|
303
176
|
|
|
304
|
-
###
|
|
177
|
+
### Dropdown Tree
|
|
305
178
|
|
|
306
179
|
#### Bug Fixes
|
|
307
180
|
|
|
@@ -309,7 +182,7 @@
|
|
|
309
182
|
|
|
310
183
|
## 19.3.46 (2021-10-19)
|
|
311
184
|
|
|
312
|
-
###
|
|
185
|
+
### Dropdown Tree
|
|
313
186
|
|
|
314
187
|
#### Bug Fixes
|
|
315
188
|
|
|
@@ -327,7 +200,7 @@
|
|
|
327
200
|
|
|
328
201
|
## 19.3.44 (2021-10-05)
|
|
329
202
|
|
|
330
|
-
###
|
|
203
|
+
### Dropdown Tree
|
|
331
204
|
|
|
332
205
|
#### New Features
|
|
333
206
|
|
|
@@ -367,7 +240,7 @@
|
|
|
367
240
|
|
|
368
241
|
- `I335313` - Issue with "select element is displayed while rendering the component with floating label" has been resolved.
|
|
369
242
|
|
|
370
|
-
###
|
|
243
|
+
### Dropdown Tree
|
|
371
244
|
|
|
372
245
|
#### Bug Fixes
|
|
373
246
|
|
|
@@ -381,7 +254,7 @@
|
|
|
381
254
|
|
|
382
255
|
- `#I336382` - The issue with getDataList not updated properly after removing the items has been fixed.
|
|
383
256
|
|
|
384
|
-
###
|
|
257
|
+
### Dropdown Tree
|
|
385
258
|
|
|
386
259
|
#### Bug Fixes
|
|
387
260
|
|
|
@@ -411,7 +284,7 @@
|
|
|
411
284
|
|
|
412
285
|
- `#I335674` - Issue with "filtering list item is reset to the popup while scrolling the popup item using mouse" has been resolved.
|
|
413
286
|
|
|
414
|
-
###
|
|
287
|
+
### Dropdown Tree
|
|
415
288
|
|
|
416
289
|
#### Bug Fixes
|
|
417
290
|
|
|
@@ -470,7 +343,7 @@
|
|
|
470
343
|
|
|
471
344
|
## 19.1.54 (2021-03-30)
|
|
472
345
|
|
|
473
|
-
###
|
|
346
|
+
### Dropdown Tree
|
|
474
347
|
|
|
475
348
|
#### Bug Fixes
|
|
476
349
|
|
|
@@ -494,7 +367,7 @@
|
|
|
494
367
|
|
|
495
368
|
## 18.4.43 (2021-02-16)
|
|
496
369
|
|
|
497
|
-
###
|
|
370
|
+
### Dropdown Tree
|
|
498
371
|
|
|
499
372
|
#### Bug Fixes
|
|
500
373
|
|
|
@@ -581,7 +454,7 @@
|
|
|
581
454
|
|
|
582
455
|
## 18.3.42 (2020-10-20)
|
|
583
456
|
|
|
584
|
-
###
|
|
457
|
+
### Dropdown Tree
|
|
585
458
|
|
|
586
459
|
#### Bug Fixes
|
|
587
460
|
|
|
@@ -619,7 +492,7 @@
|
|
|
619
492
|
|
|
620
493
|
## 18.2.54 (2020-08-18)
|
|
621
494
|
|
|
622
|
-
###
|
|
495
|
+
### Dropdown Tree
|
|
623
496
|
|
|
624
497
|
#### Breaking Changes
|
|
625
498
|
|
|
@@ -639,7 +512,7 @@
|
|
|
639
512
|
|
|
640
513
|
- `#285392` - Enable / disable list items based on unique value support provided.
|
|
641
514
|
|
|
642
|
-
###
|
|
515
|
+
### Dropdown Tree
|
|
643
516
|
|
|
644
517
|
#### Bug Fixes
|
|
645
518
|
|
|
@@ -691,7 +564,7 @@
|
|
|
691
564
|
|
|
692
565
|
-`#273796` - Now, e-outline class is added to the filter input
|
|
693
566
|
|
|
694
|
-
###
|
|
567
|
+
### Dropdown Tree
|
|
695
568
|
|
|
696
569
|
#### Bug Fixes
|
|
697
570
|
|
|
@@ -713,7 +586,7 @@
|
|
|
713
586
|
|
|
714
587
|
- `#273796` - Now, filtering works properly when paste the value in the input element.
|
|
715
588
|
|
|
716
|
-
###
|
|
589
|
+
### Dropdown Tree
|
|
717
590
|
|
|
718
591
|
#### Bug Fixes
|
|
719
592
|
|
|
@@ -753,7 +626,7 @@
|
|
|
753
626
|
|
|
754
627
|
## 18.1.46 (2020-04-28)
|
|
755
628
|
|
|
756
|
-
###
|
|
629
|
+
### Dropdown Tree
|
|
757
630
|
|
|
758
631
|
#### Bug Fixes
|
|
759
632
|
|
|
@@ -783,7 +656,7 @@
|
|
|
783
656
|
The newly added `Dropdown Tree` component in dropdowns package requires `Navigations` dependency, so now it is mandatory to include the `ej2-navigations.umd.min.js` in `system.js` configuration if you are using the system.js module loader.
|
|
784
657
|
Update the system.js configuration while going with this version and above.
|
|
785
658
|
|
|
786
|
-
###
|
|
659
|
+
### Dropdown Tree
|
|
787
660
|
|
|
788
661
|
The Dropdown Tree control allows you to select single or multiple values from hierarchical data in a tree-like structure. It has several out-of-the-box features, such as data binding, check boxes, templates, UI customization, accessibility, and preselected values. The available key features are
|
|
789
662
|
|