@syncfusion/ej2-dropdowns 22.2.12 → 23.1.36

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.
Files changed (254) hide show
  1. package/.eslintrc.json +260 -0
  2. package/CHANGELOG.md +2 -215
  3. package/dist/ej2-dropdowns.min.js +2 -2
  4. package/dist/ej2-dropdowns.umd.min.js +2 -2
  5. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-dropdowns.es2015.js +1118 -66
  7. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  8. package/dist/es6/ej2-dropdowns.es5.js +1172 -62
  9. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  10. package/dist/global/ej2-dropdowns.min.js +2 -2
  11. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  12. package/dist/global/index.d.ts +1 -1
  13. package/package.json +13 -12
  14. package/src/auto-complete/auto-complete.js +40 -2
  15. package/src/combo-box/combo-box.js +9 -3
  16. package/src/common/index.d.ts +2 -0
  17. package/src/common/index.js +1 -0
  18. package/src/common/interface.d.ts +76 -0
  19. package/src/common/interface.js +1 -0
  20. package/src/common/virtual-scroll.d.ts +61 -0
  21. package/src/common/virtual-scroll.js +376 -0
  22. package/src/drop-down-base/drop-down-base.d.ts +10 -4
  23. package/src/drop-down-base/drop-down-base.js +72 -8
  24. package/src/drop-down-list/drop-down-list-model.d.ts +8 -1
  25. package/src/drop-down-list/drop-down-list.d.ts +55 -1
  26. package/src/drop-down-list/drop-down-list.js +635 -37
  27. package/src/drop-down-list/index.d.ts +1 -0
  28. package/src/drop-down-list/index.js +1 -0
  29. package/src/drop-down-tree/drop-down-tree.d.ts +1 -1
  30. package/src/global.js +3 -0
  31. package/src/mention/mention.js +8 -1
  32. package/src/multi-select/checkbox-selection.js +1 -1
  33. package/src/multi-select/multi-select.d.ts +1 -0
  34. package/src/multi-select/multi-select.js +34 -8
  35. package/styles/auto-complete/bootstrap-dark.scss +1 -1
  36. package/styles/auto-complete/bootstrap.scss +1 -1
  37. package/styles/auto-complete/bootstrap4.scss +1 -1
  38. package/styles/auto-complete/bootstrap5-dark.scss +1 -1
  39. package/styles/auto-complete/bootstrap5.scss +1 -1
  40. package/styles/auto-complete/fabric-dark.scss +1 -1
  41. package/styles/auto-complete/fabric.scss +1 -1
  42. package/styles/auto-complete/fluent-dark.scss +1 -1
  43. package/styles/auto-complete/fluent.scss +1 -1
  44. package/styles/auto-complete/highcontrast-light.scss +1 -1
  45. package/styles/auto-complete/highcontrast.scss +1 -1
  46. package/styles/auto-complete/material-dark.css +0 -1
  47. package/styles/auto-complete/material-dark.scss +1 -1
  48. package/styles/auto-complete/material.css +0 -1
  49. package/styles/auto-complete/material.scss +1 -1
  50. package/styles/auto-complete/material3-dark.css +0 -1
  51. package/styles/auto-complete/material3-dark.scss +1 -1
  52. package/styles/auto-complete/material3.css +0 -1
  53. package/styles/auto-complete/material3.scss +1 -1
  54. package/styles/auto-complete/tailwind-dark.css +0 -1
  55. package/styles/auto-complete/tailwind-dark.scss +1 -1
  56. package/styles/auto-complete/tailwind.css +0 -1
  57. package/styles/auto-complete/tailwind.scss +1 -1
  58. package/styles/bootstrap-dark.css +0 -8
  59. package/styles/bootstrap.css +0 -8
  60. package/styles/bootstrap4.css +4 -12
  61. package/styles/bootstrap5-dark.css +0 -8
  62. package/styles/bootstrap5.css +0 -8
  63. package/styles/combo-box/bootstrap-dark.scss +1 -1
  64. package/styles/combo-box/bootstrap.scss +1 -1
  65. package/styles/combo-box/bootstrap4.scss +1 -1
  66. package/styles/combo-box/bootstrap5-dark.scss +1 -1
  67. package/styles/combo-box/bootstrap5.scss +1 -1
  68. package/styles/combo-box/fabric-dark.scss +1 -1
  69. package/styles/combo-box/fabric.scss +1 -1
  70. package/styles/combo-box/fluent-dark.scss +1 -1
  71. package/styles/combo-box/fluent.scss +1 -1
  72. package/styles/combo-box/highcontrast-light.scss +1 -1
  73. package/styles/combo-box/highcontrast.scss +1 -1
  74. package/styles/combo-box/material-dark.css +0 -1
  75. package/styles/combo-box/material-dark.scss +1 -1
  76. package/styles/combo-box/material.css +0 -1
  77. package/styles/combo-box/material.scss +1 -1
  78. package/styles/combo-box/material3-dark.css +0 -1
  79. package/styles/combo-box/material3-dark.scss +1 -1
  80. package/styles/combo-box/material3.css +0 -1
  81. package/styles/combo-box/material3.scss +1 -1
  82. package/styles/combo-box/tailwind-dark.css +0 -1
  83. package/styles/combo-box/tailwind-dark.scss +1 -1
  84. package/styles/combo-box/tailwind.css +0 -1
  85. package/styles/combo-box/tailwind.scss +1 -1
  86. package/styles/drop-down-base/bootstrap-dark.scss +1 -1
  87. package/styles/drop-down-base/bootstrap.scss +1 -1
  88. package/styles/drop-down-base/bootstrap4.scss +1 -1
  89. package/styles/drop-down-base/bootstrap5-dark.scss +1 -1
  90. package/styles/drop-down-base/bootstrap5.scss +1 -1
  91. package/styles/drop-down-base/fabric-dark.scss +1 -1
  92. package/styles/drop-down-base/fabric.scss +1 -1
  93. package/styles/drop-down-base/fluent-dark.scss +1 -1
  94. package/styles/drop-down-base/fluent.scss +1 -1
  95. package/styles/drop-down-base/highcontrast-light.scss +1 -1
  96. package/styles/drop-down-base/highcontrast.scss +1 -1
  97. package/styles/drop-down-base/material-dark.css +0 -1
  98. package/styles/drop-down-base/material-dark.scss +1 -1
  99. package/styles/drop-down-base/material.css +0 -1
  100. package/styles/drop-down-base/material.scss +1 -1
  101. package/styles/drop-down-base/material3-dark.css +0 -1
  102. package/styles/drop-down-base/material3-dark.scss +1 -1
  103. package/styles/drop-down-base/material3.css +0 -1
  104. package/styles/drop-down-base/material3.scss +1 -1
  105. package/styles/drop-down-base/tailwind-dark.css +0 -1
  106. package/styles/drop-down-base/tailwind-dark.scss +1 -1
  107. package/styles/drop-down-base/tailwind.css +0 -1
  108. package/styles/drop-down-base/tailwind.scss +1 -1
  109. package/styles/drop-down-list/bootstrap-dark.scss +2 -1
  110. package/styles/drop-down-list/bootstrap.scss +2 -1
  111. package/styles/drop-down-list/bootstrap4.scss +2 -1
  112. package/styles/drop-down-list/bootstrap5-dark.scss +2 -1
  113. package/styles/drop-down-list/bootstrap5.scss +2 -1
  114. package/styles/drop-down-list/fabric-dark.scss +2 -1
  115. package/styles/drop-down-list/fabric.scss +2 -1
  116. package/styles/drop-down-list/fluent-dark.scss +2 -1
  117. package/styles/drop-down-list/fluent.scss +2 -1
  118. package/styles/drop-down-list/highcontrast-light.scss +2 -1
  119. package/styles/drop-down-list/highcontrast.scss +2 -1
  120. package/styles/drop-down-list/material-dark.css +0 -1
  121. package/styles/drop-down-list/material-dark.scss +2 -1
  122. package/styles/drop-down-list/material.css +0 -1
  123. package/styles/drop-down-list/material.scss +2 -1
  124. package/styles/drop-down-list/material3-dark.css +0 -1
  125. package/styles/drop-down-list/material3-dark.scss +2 -1
  126. package/styles/drop-down-list/material3.css +0 -1
  127. package/styles/drop-down-list/material3.scss +2 -1
  128. package/styles/drop-down-list/tailwind-dark.css +0 -1
  129. package/styles/drop-down-list/tailwind-dark.scss +2 -1
  130. package/styles/drop-down-list/tailwind.css +0 -1
  131. package/styles/drop-down-list/tailwind.scss +2 -1
  132. package/styles/drop-down-tree/bootstrap-dark.scss +1 -1
  133. package/styles/drop-down-tree/bootstrap.scss +1 -1
  134. package/styles/drop-down-tree/bootstrap4.scss +1 -1
  135. package/styles/drop-down-tree/bootstrap5-dark.scss +1 -1
  136. package/styles/drop-down-tree/bootstrap5.scss +1 -1
  137. package/styles/drop-down-tree/fabric-dark.scss +1 -1
  138. package/styles/drop-down-tree/fabric.scss +1 -1
  139. package/styles/drop-down-tree/fluent-dark.scss +1 -1
  140. package/styles/drop-down-tree/fluent.scss +1 -1
  141. package/styles/drop-down-tree/highcontrast-light.scss +1 -1
  142. package/styles/drop-down-tree/highcontrast.scss +1 -1
  143. package/styles/drop-down-tree/material-dark.css +0 -1
  144. package/styles/drop-down-tree/material-dark.scss +1 -1
  145. package/styles/drop-down-tree/material.css +0 -1
  146. package/styles/drop-down-tree/material.scss +1 -1
  147. package/styles/drop-down-tree/material3-dark.css +0 -1
  148. package/styles/drop-down-tree/material3-dark.scss +1 -1
  149. package/styles/drop-down-tree/material3.css +0 -1
  150. package/styles/drop-down-tree/material3.scss +1 -1
  151. package/styles/drop-down-tree/tailwind-dark.css +0 -1
  152. package/styles/drop-down-tree/tailwind-dark.scss +1 -1
  153. package/styles/drop-down-tree/tailwind.css +0 -1
  154. package/styles/drop-down-tree/tailwind.scss +1 -1
  155. package/styles/fabric-dark.css +0 -8
  156. package/styles/fabric.css +0 -8
  157. package/styles/fluent-dark.css +4 -12
  158. package/styles/fluent.css +4 -12
  159. package/styles/highcontrast-light.css +0 -8
  160. package/styles/highcontrast.css +0 -8
  161. package/styles/list-box/_bootstrap4-definition.scss +4 -4
  162. package/styles/list-box/_fluent-definition.scss +4 -4
  163. package/styles/list-box/_layout.scss +0 -6
  164. package/styles/list-box/_material3-definition.scss +4 -4
  165. package/styles/list-box/_tailwind-definition.scss +3 -3
  166. package/styles/list-box/bootstrap-dark.css +0 -8
  167. package/styles/list-box/bootstrap-dark.scss +1 -1
  168. package/styles/list-box/bootstrap.css +0 -8
  169. package/styles/list-box/bootstrap.scss +1 -1
  170. package/styles/list-box/bootstrap4.css +4 -12
  171. package/styles/list-box/bootstrap4.scss +1 -1
  172. package/styles/list-box/bootstrap5-dark.css +0 -8
  173. package/styles/list-box/bootstrap5-dark.scss +1 -1
  174. package/styles/list-box/bootstrap5.css +0 -8
  175. package/styles/list-box/bootstrap5.scss +1 -1
  176. package/styles/list-box/fabric-dark.css +0 -8
  177. package/styles/list-box/fabric-dark.scss +1 -1
  178. package/styles/list-box/fabric.css +0 -8
  179. package/styles/list-box/fabric.scss +1 -1
  180. package/styles/list-box/fluent-dark.css +4 -12
  181. package/styles/list-box/fluent-dark.scss +1 -1
  182. package/styles/list-box/fluent.css +4 -12
  183. package/styles/list-box/fluent.scss +1 -1
  184. package/styles/list-box/highcontrast-light.css +0 -8
  185. package/styles/list-box/highcontrast-light.scss +1 -1
  186. package/styles/list-box/highcontrast.css +0 -8
  187. package/styles/list-box/highcontrast.scss +1 -1
  188. package/styles/list-box/material-dark.css +0 -9
  189. package/styles/list-box/material-dark.scss +1 -1
  190. package/styles/list-box/material.css +0 -9
  191. package/styles/list-box/material.scss +1 -1
  192. package/styles/list-box/material3-dark.css +4 -13
  193. package/styles/list-box/material3-dark.scss +1 -1
  194. package/styles/list-box/material3.css +4 -13
  195. package/styles/list-box/material3.scss +1 -1
  196. package/styles/list-box/tailwind-dark.css +3 -12
  197. package/styles/list-box/tailwind-dark.scss +1 -1
  198. package/styles/list-box/tailwind.css +3 -12
  199. package/styles/list-box/tailwind.scss +1 -1
  200. package/styles/material-dark.css +0 -9
  201. package/styles/material.css +0 -9
  202. package/styles/material3-dark.css +4 -13
  203. package/styles/material3-dark.scss +1 -1
  204. package/styles/material3.css +4 -13
  205. package/styles/material3.scss +1 -1
  206. package/styles/mention/bootstrap-dark.scss +1 -1
  207. package/styles/mention/bootstrap.scss +1 -1
  208. package/styles/mention/bootstrap4.scss +1 -1
  209. package/styles/mention/bootstrap5-dark.scss +1 -1
  210. package/styles/mention/bootstrap5.scss +1 -1
  211. package/styles/mention/fabric-dark.scss +1 -1
  212. package/styles/mention/fabric.scss +1 -1
  213. package/styles/mention/fluent-dark.scss +1 -1
  214. package/styles/mention/fluent.scss +1 -1
  215. package/styles/mention/highcontrast-light.scss +1 -1
  216. package/styles/mention/highcontrast.scss +1 -1
  217. package/styles/mention/material-dark.css +0 -1
  218. package/styles/mention/material-dark.scss +1 -1
  219. package/styles/mention/material.css +0 -1
  220. package/styles/mention/material.scss +1 -1
  221. package/styles/mention/material3-dark.css +0 -1
  222. package/styles/mention/material3-dark.scss +1 -1
  223. package/styles/mention/material3.css +0 -1
  224. package/styles/mention/material3.scss +1 -1
  225. package/styles/mention/tailwind-dark.css +0 -1
  226. package/styles/mention/tailwind-dark.scss +1 -1
  227. package/styles/mention/tailwind.css +0 -1
  228. package/styles/mention/tailwind.scss +1 -1
  229. package/styles/multi-select/bootstrap-dark.scss +1 -1
  230. package/styles/multi-select/bootstrap.scss +1 -1
  231. package/styles/multi-select/bootstrap4.scss +1 -1
  232. package/styles/multi-select/bootstrap5-dark.scss +1 -1
  233. package/styles/multi-select/bootstrap5.scss +1 -1
  234. package/styles/multi-select/fabric-dark.scss +1 -1
  235. package/styles/multi-select/fabric.scss +1 -1
  236. package/styles/multi-select/fluent-dark.scss +1 -1
  237. package/styles/multi-select/fluent.scss +1 -1
  238. package/styles/multi-select/highcontrast-light.scss +1 -1
  239. package/styles/multi-select/highcontrast.scss +1 -1
  240. package/styles/multi-select/material-dark.css +0 -1
  241. package/styles/multi-select/material-dark.scss +1 -1
  242. package/styles/multi-select/material.css +0 -1
  243. package/styles/multi-select/material.scss +1 -1
  244. package/styles/multi-select/material3-dark.css +0 -1
  245. package/styles/multi-select/material3-dark.scss +1 -1
  246. package/styles/multi-select/material3.css +0 -1
  247. package/styles/multi-select/material3.scss +1 -1
  248. package/styles/multi-select/tailwind-dark.css +0 -1
  249. package/styles/multi-select/tailwind-dark.scss +1 -1
  250. package/styles/multi-select/tailwind.css +0 -1
  251. package/styles/multi-select/tailwind.scss +1 -1
  252. package/styles/tailwind-dark.css +3 -19
  253. package/styles/tailwind.css +3 -19
  254. package/tslint.json +111 -0
package/.eslintrc.json ADDED
@@ -0,0 +1,260 @@
1
+ {
2
+ "env": {
3
+ "browser": true,
4
+ "es2021": true
5
+ },
6
+ "extends": [
7
+ "eslint:recommended",
8
+ "plugin:@typescript-eslint/recommended",
9
+ "plugin:jsdoc/recommended",
10
+ "plugin:security/recommended"
11
+ ],
12
+ "parser": "@typescript-eslint/parser",
13
+ "parserOptions": {
14
+ "ecmaFeatures": { "js": true },
15
+ "ecmaVersion": 2018,
16
+ "project": "./tsconfig.json",
17
+ "sourceType": "module"
18
+ },
19
+ "plugins": [
20
+ "@typescript-eslint",
21
+ "@typescript-eslint/tslint",
22
+ "eslint-plugin-security",
23
+ "jsdoc"
24
+ ],
25
+ "rules": {
26
+ "use-isnan": "error",
27
+ "security/detect-unsafe-regex":"error",
28
+ "security/detect-buffer-noassert":"error",
29
+ "security/detect-child-process":"error",
30
+ "security/detect-disable-mustache-escape":"error",
31
+ "security/detect-eval-with-expression":"error",
32
+ "security/detect-no-csrf-before-method-override":"error",
33
+ "security/detect-non-literal-fs-filename":"error",
34
+ "security/detect-non-literal-regexp":"error",
35
+ "security/detect-non-literal-require":"error",
36
+ "security/detect-object-injection":"error",
37
+ "security/detect-possible-timing-attacks":"error",
38
+ "security/detect-pseudoRandomBytes":"error",
39
+ "security/detect-new-buffer":"error",
40
+ "security/detect-bidi-characters":"error",
41
+ "@typescript-eslint/no-inferrable-types": "off",
42
+ "@typescript-eslint/ban-types": ["warn", {
43
+ "types": {
44
+ "Object": false,
45
+ "object": false,
46
+ "{}": false,
47
+ "Function": false
48
+ }
49
+ }],
50
+ "jsdoc/check-tag-names": 0,
51
+ "@typescript-eslint/tslint/config": [
52
+ "error",
53
+ {
54
+ "rules": {
55
+ "ban": true,
56
+ "chai-vague-errors": true,
57
+ "max-func-body-length": [
58
+ true,
59
+ 120,
60
+ {
61
+ "ignore-parameters-to-function-regex": "describe"
62
+ }
63
+ ],
64
+ "missing-jsdoc": true,
65
+ "no-backbone-get-set-outside-model": false,
66
+ "no-cookies": false,
67
+ "no-delete-expression": false,
68
+ "no-disable-auto-sanitization": true,
69
+ "no-duplicate-case": true,
70
+ "no-duplicate-parameter-names": true,
71
+ "no-empty-interfaces": false,
72
+ "no-exec-script": true,
73
+ "no-function-expression": false,
74
+ "no-multiple-var-decl": false,
75
+ "no-string-based-set-immediate": false,
76
+ "no-string-based-set-interval": false,
77
+ "no-unnecessary-bind": false,
78
+ "no-unused-imports": true,
79
+ "no-with-statement": false,
80
+ "prefer-array-literal": false,
81
+ "typedef": [
82
+ true,
83
+ "call-signature",
84
+ "parameter",
85
+ "property-declaration",
86
+ "variable-declaration",
87
+ "arrow-parameter",
88
+ "member-variable-declaration"
89
+ ],
90
+ "use-named-parameter": false,
91
+ "valid-typeof": true,
92
+ "whitespace": [
93
+ true,
94
+ "check-branch",
95
+ "check-decl",
96
+ "check-operator",
97
+ "check-separator",
98
+ "check-type"
99
+ ]
100
+ }
101
+ }
102
+ ],
103
+ "no-control-regex": "error",
104
+ "no-constant-condition": "error",
105
+ "no-invalid-regexp": "error",
106
+ "curly": "error",
107
+ "eol-last": [
108
+ "error",
109
+ "always"
110
+ ],
111
+ "guard-for-in": "error",
112
+ "no-labels": "error",
113
+ "max-len": [
114
+ "error",
115
+ {
116
+ "code": 140,
117
+ "tabWidth": 4,
118
+ "ignoreComments": true,
119
+ "ignoreStrings": true,
120
+ "ignoreTemplateLiterals": true,
121
+ "ignoreRegExpLiterals": true
122
+ }
123
+ ],
124
+ "no-console": [
125
+ "error",
126
+ {
127
+ "allow": [
128
+ "warn",
129
+ "dir",
130
+ "timeLog",
131
+ "assert",
132
+ "clear",
133
+ "count",
134
+ "countReset",
135
+ "group",
136
+ "groupEnd",
137
+ "table",
138
+ "dirxml",
139
+ "error",
140
+ "groupCollapsed",
141
+ "Console",
142
+ "profile",
143
+ "profileEnd",
144
+ "timeStamp",
145
+ "context"
146
+ ]
147
+ }
148
+ ],
149
+ "no-redeclare": [
150
+ "error",
151
+ {
152
+ "builtinGlobals": true
153
+ }
154
+ ],
155
+ "@typescript-eslint/no-parameter-properties": "error",
156
+ "@typescript-eslint/indent": [
157
+ "error",
158
+ 4,
159
+ {
160
+ "CallExpression": {
161
+ "arguments": "first"
162
+ },
163
+ "FunctionDeclaration": {
164
+ "parameters": "first"
165
+ },
166
+ "FunctionExpression": {
167
+ "parameters": "first"
168
+ }
169
+ }
170
+ ],
171
+ "no-debugger": "error",
172
+ "no-eval": "error",
173
+ "no-extra-semi": "error",
174
+ "no-throw-literal": "error",
175
+ "no-fallthrough": "error",
176
+ "comma-dangle": [
177
+ "error",
178
+ "never"
179
+ ],
180
+ "no-trailing-spaces": "error",
181
+ "@typescript-eslint/no-unused-expressions": "error",
182
+ "@typescript-eslint/no-var-requires": "error",
183
+ "one-var": [
184
+ "error",
185
+ "never"
186
+ ],
187
+ "@typescript-eslint/no-explicit-any": "error",
188
+ "no-cond-assign": [
189
+ "error",
190
+ "always"
191
+ ],
192
+ "@typescript-eslint/consistent-type-assertions": "off",
193
+ "jsdoc/check-alignment": "error",
194
+ "no-empty": "error",
195
+ "quotes": [
196
+ "error",
197
+ "single"
198
+ ],
199
+ "semi": [
200
+ "error",
201
+ "always"
202
+ ],
203
+ "eqeqeq": [
204
+ "error",
205
+ "smart"
206
+ ],
207
+ "valid-typeof": [
208
+ "error",
209
+ {
210
+ "requireStringLiterals": true
211
+ }
212
+ ],
213
+ "camelcase": [
214
+ "error",
215
+ {
216
+ "properties": "always",
217
+ "ignoreDestructuring": true,
218
+ "ignoreImports": true
219
+ }
220
+ ],
221
+ "no-irregular-whitespace": [
222
+ "error",
223
+ {
224
+ "skipStrings": true,
225
+ "skipComments": true,
226
+ "skipRegExps": true,
227
+ "skipTemplates": true
228
+ }
229
+ ],
230
+ "valid-jsdoc": [
231
+ "error",
232
+ {
233
+ "prefer": {
234
+ "arg": "param",
235
+ "argument": "param",
236
+ "class": "constructor",
237
+ "return": "returns",
238
+ "virtual": "abstract"
239
+ }
240
+ }
241
+ ],
242
+ "no-var": "error",
243
+ "radix": "error"
244
+ },
245
+ "reportUnusedDisableDirectives": true,
246
+ "overrides": [
247
+ {
248
+ "files": [
249
+ "node_modules",
250
+ "dist",
251
+ "public",
252
+ "coverage",
253
+ "test-report"
254
+ ],
255
+ "rules": {
256
+ "no-unused-expressions": "off"
257
+ }
258
+ }
259
+ ]
260
+ }
package/CHANGELOG.md CHANGED
@@ -2,86 +2,11 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
- ### MultiSelect
6
-
7
- #### Bug Fixes
8
-
9
- - `#I483661` - Fixed the issue where the selected value was not displayed correctly when using a character inside the datasource.
10
-
11
- ## 22.2.11 (2023-08-29)
12
-
13
- ### Dropdown Tree
14
-
15
- #### Bug Fixes
16
-
17
- - `#I492834` - An issue with the `noRecordsTemplate` property of the React Dropdown Tree component has been resolved.
18
-
19
- ## 22.2.10 (2023-08-22)
20
-
21
- ### DropDown List
22
-
23
- #### Bug Fixes
24
-
25
- - `#I490309` - The issue with the `aria-owns` attribute not having the correct `ID` of its popup list element has been fixed.
26
- - `#I481443` - Resolved the issue where the "no records" template was not being displayed and a console error occurred.
27
-
28
- ### MultiSelect
29
-
30
- #### Bug Fixes
31
-
32
- - `#I479749` - Resolved the issue of "Unable to retrieve preselected variable values that are not present in the data source".
33
-
34
- ### Dropdown Tree
35
-
36
- #### Bug Fixes
37
-
38
- - `#F183599` - The issue duplicate child was rendered when using `expanded` field in Dropdown Tree component with Web API adaptor has been resolved.
39
-
40
- ## 22.2.9 (2023-08-15)
41
-
42
- ### ComboBox
43
-
44
- #### Bug Fixes
45
-
46
- - `#483288` - Fixed a script error that occurred when opening the combobox popup in the Internet Explorer browser.
47
-
48
- ### DropDown List
49
-
50
- #### Bug Fixes
51
-
52
- - `#I477135` - Fixed a memory leak issue in the Dropdownlist Component.
53
-
54
- - `#I486973` - Fixed an issue where the last selected item in the DropDownList would be retained in the list of items when the data source was changed.
55
-
56
- ## 22.2.8 (2023-08-08)
57
-
58
- ### DropDown List
59
-
60
- #### Bug Fixes
61
-
62
- - `#I474541` - Fixed an issue where the position of the popup was incorrect when enabling RTL mode.
63
-
64
5
  ### ListBox
65
6
 
66
7
  #### Bug Fixes
67
8
 
68
- - `#I485947` - Issue with "Script error thrown While Drag and Drop in dual ListBox with filtering option in blazor" has been resolved.
69
-
70
- ## 22.2.5 (2023-07-27)
71
-
72
- ### Dropdown Tree
73
-
74
- #### Bug Fixes
75
-
76
- - `#I481958` - The issue with "Child nodes are not rendering while mapping id with object value" has been resolved.
77
-
78
- ## 22.1.39 (2023-07-18)
79
-
80
- ### ListBox
81
-
82
- #### Bug Fixes
83
-
84
- - `#I473804` - Issue with "Scroll goes down while dragging the list item when we placed the listbox within popup" has been resolved.
9
+ - `#I462373` - Issue with "Double quotes value not submitted while using the listbox component within the form" has been resolved.
85
10
 
86
11
  ### MultiSelect
87
12
 
@@ -89,66 +14,17 @@
89
14
 
90
15
  - `#I480443` - Fixed console error that occurred when opening the multiselect in mobile mode
91
16
 
92
- ## 22.1.37 (2023-07-04)
93
-
94
17
  ### DropdownList
95
18
 
96
19
  #### Bug Fixes
97
20
 
98
21
  - `#I472623` - Resolved an issue when the window is resizing the popup position is misaligned
99
22
 
100
- - `#I467885` - Resolved an issue where the change event was not triggered for dynamically created TextBox after dropdown component was destroyed.
101
-
102
- ## 22.1.36 (2023-06-28)
103
-
104
- ### ListBox
105
-
106
- #### Bug Fixes
107
-
108
- - `#I473804` - Issue with "Scroll goes down while dragging the list item when we placed the listbox within popup" has been resolved.
109
-
110
- ## 21.2.10 (2023-06-13)
111
-
112
- ### ListBox
113
-
114
- #### Bug Fixes
115
-
116
- - `#I467539` - Issue with "AddItems method not working when we use itemTemplate(element type) in listbox" has been resolved.
117
-
118
- ### MultiSelect
119
-
120
- #### Bug Fixes
121
-
122
- - `#I467953` - Issue with "Query construct incorrectly when preselect the value second time beyond the data source value" has been resolved.
123
-
124
- ### DropDownList
125
-
126
- #### Bug Fixes
127
-
128
- - `I469452` - Issue with "A console error is thrown when the datasource value field has a null value in the dropdown list" has been resolved.
129
-
130
23
  ### ListBox
131
24
 
132
25
  #### Bug Fixes
133
26
 
134
27
  - `#F43705` - Issue with "Dropping selected items does not work correctly while enabling the checkbox in listbox component." has been resolved.
135
- - `#I462373` - Issue with "Double quotes value not submitted while using the listbox component within the form." has been resolved.
136
-
137
- ## 21.2.8 (2023-05-30)
138
-
139
- ### ListBox
140
-
141
- #### Bug Fixes
142
-
143
- - `#I462373` - Issue with "Double quotes value not submitted while using the listbox component within the form." has been resolved.
144
-
145
- ### AutoComplete
146
-
147
- #### Bug Fixes
148
-
149
- - `#I460876` - Issue with "The header and footer template are not working" has been resolved.
150
-
151
- ## 21.2.6 (2023-05-23)
152
28
 
153
29
  ### MultiSelect
154
30
 
@@ -156,103 +32,20 @@
156
32
 
157
33
  - `#I451885` - Resolved the performance issue when multiselect component is rendered with large number of data.
158
34
 
159
- ### DropDownList
160
-
161
- #### Bug Fixes
162
-
163
- - `I460077` - Issue with "The popup is not closing properly when the focus is moved between two dropdowns" has been resolved.
164
-
165
35
  ## 21.2.5 (2023-05-16)
166
36
 
167
37
  ### ListBox
168
38
 
169
39
  #### Bug Fixes
170
40
 
171
- - `#I461307` - Issue with "No Records Template not renders properly when we set the default string in listbox" has been resolved.
172
-
173
- ### ComboBox
174
-
175
- #### Bug Fixes
176
-
177
- - `#I452948` - "The memory leak issue detected in the combobox component within the detach element tab of the Edge browser" has been resolved.
178
-
179
- ## 21.2.4 (2023-05-09)
180
-
181
- ### ListBox
182
-
183
- #### Bug Fixes
184
-
185
- - `#I453746` - Issue with "Selected items not focusing properly in listbox while using selectItems method" has been resolved.
186
- - `#I461307` - Issue with "No Records Template not renders properly when we set the default string in listbox" has been resolved.
187
-
188
- ## 21.2.3 (2023-05-03)
189
-
190
- ### ListBox
191
-
192
- #### Bug Fixes
193
-
194
- - `#I453746` - Issue with "selectItems doesn't remove the existing selections in the listbox" has been resolved.
195
-
196
- ## 21.1.41 (2023-04-18)
197
-
198
- ### ListBox
199
-
200
- #### Bug Fixes
201
-
202
41
  - `#F181311` - Issue with "Scrolling is not working while drag and drop the list box with item Template in angular platform" has been resolved.
203
-
204
- ### Dropdown Tree
205
-
206
- #### Bug Fixes
207
-
208
- - `#I451965` - While performing filtering multiple times, the checked node state is cleared in the Dropdown Tree component has been resolved.
209
-
210
- ## 21.1.39 (2023-04-11)
211
-
212
- ### ListBox
213
-
214
- #### Bug Fixes
215
-
216
42
  - `#F181131` - Issue with "No Record Found text disappears while hovering the drag item on list box without drop" has been resolved.
217
43
  - `#F181311` - Issue with "Scrolling is not working while drag and drop the list box with item Template" has been resolved.
218
-
219
- ## 21.1.38 (2023-04-04)
220
-
221
- ### Dropdown Tree
222
-
223
- #### Bug Fixes
224
-
225
- - `#I450984` - Resolved issue, when manually select the all items then `SelectAll` state not updated for the Dropdown Tree component.
226
-
227
- ## 21.1.37 (2023-03-29)
228
-
229
- ### Mention
230
-
231
- #### Bug Fixes
232
-
233
- - `#I449973` - Resolved issue where the Mention character would still display after selecting a name from the suggestion list.
234
-
235
- ### ListBox
236
-
237
- #### Bug Fixes
238
-
239
- - `#I442262` - Issue with "Script error thrown while using destroy method in change event of list box" has been resolved.
240
44
  - `#I445397` - Issue with "Script error thrown when navigate the listbox item in grouping listbox through keyboard navigation" has been resolved.
241
-
242
- ## 21.1.35 (2023-03-23)
243
-
244
- ### ListBox
245
-
246
- #### Bug Fixes
247
-
45
+ - `#I442262` - Issue with "Script error thrown while using destroy method in change event of list box" has been resolved.
248
46
  - `#F38636` - Issue with "`selectItems` function doesn't work in listbox when values contain backslashes" has been resolved.
249
47
  - `#F424252` - Issue with "Data source not update properly when we filtering and clicking move All button in listbox toolbar sample" has been resolved.
250
48
  - `#I423072` - Issue with "`actionBegin` event argument not passes the filtered item properly while filtering and clicking move All button in listbox toolbar sample" has been resolved.
251
-
252
- ### ListBox
253
-
254
- #### Bug Fixes
255
-
256
49
  - `#F37860` - Issue with "Command button not working properly for multiselect in ListBox in Mac" has been resolved.
257
50
 
258
51
  ### DropDownList
@@ -261,12 +54,6 @@
261
54
 
262
55
  - `#I397894` - The issue "aria-label added on input element instead of wrapper element while adding the aria-label by using Html Attribute property" has been resolved.
263
56
 
264
- ### ListBox
265
-
266
- #### Bug Fixes
267
-
268
- - `#I409839` - Issue with "Script error thrown while drag and drop after removed the item from listbox using removeItem method" has been resolved.
269
-
270
57
  ## 20.3.47 (2022-09-29)
271
58
 
272
59
  ### Mention