@syncfusion/ej2-dropdowns 23.2.7-52849 → 24.1.41

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 (256) hide show
  1. package/.eslintrc.json +260 -0
  2. package/CHANGELOG.md +2038 -2152
  3. package/{ReadMe.md → README.md} +217 -217
  4. package/dist/ej2-dropdowns.min.js +10 -0
  5. package/dist/ej2-dropdowns.umd.min.js +10 -1
  6. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  7. package/dist/es6/ej2-dropdowns.es2015.js +709 -172
  8. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  9. package/dist/es6/ej2-dropdowns.es5.js +870 -332
  10. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  11. package/dist/global/ej2-dropdowns.min.js +11 -0
  12. package/dist/global/ej2-dropdowns.min.js.map +1 -0
  13. package/dist/global/index.d.ts +14 -0
  14. package/helpers/e2e/autocomplete.js +13 -13
  15. package/helpers/e2e/combobox.js +13 -13
  16. package/helpers/e2e/dropdownlist.js +13 -13
  17. package/helpers/e2e/index.js +3 -3
  18. package/helpers/e2e/listboxHelper.js +13 -13
  19. package/helpers/e2e/multiselect.js +13 -13
  20. package/license +2 -2
  21. package/package.json +80 -80
  22. package/src/auto-complete/auto-complete-model.d.ts +188 -188
  23. package/src/auto-complete/auto-complete.d.ts +12 -12
  24. package/src/auto-complete/auto-complete.js +30 -25
  25. package/src/combo-box/combo-box-model.d.ts +224 -224
  26. package/src/combo-box/combo-box.d.ts +27 -27
  27. package/src/combo-box/combo-box.js +103 -31
  28. package/src/common/incremental-search.d.ts +1 -1
  29. package/src/common/incremental-search.js +50 -7
  30. package/src/common/interface.d.ts +2 -0
  31. package/src/common/virtual-scroll.js +68 -47
  32. package/src/drop-down-base/drop-down-base-model.d.ts +200 -200
  33. package/src/drop-down-base/drop-down-base.d.ts +38 -18
  34. package/src/drop-down-base/drop-down-base.js +173 -60
  35. package/src/drop-down-list/drop-down-list-model.d.ts +202 -202
  36. package/src/drop-down-list/drop-down-list.d.ts +14 -7
  37. package/src/drop-down-list/drop-down-list.js +325 -61
  38. package/src/drop-down-tree/drop-down-tree-model.d.ts +468 -468
  39. package/src/drop-down-tree/drop-down-tree.js +43 -39
  40. package/src/list-box/list-box-model.d.ts +193 -193
  41. package/src/list-box/list-box.d.ts +2 -2
  42. package/src/list-box/list-box.js +27 -20
  43. package/src/mention/mention-model.d.ts +261 -261
  44. package/src/mention/mention.js +24 -20
  45. package/src/multi-select/checkbox-selection.js +4 -1
  46. package/src/multi-select/multi-select-model.d.ts +512 -512
  47. package/src/multi-select/multi-select.js +23 -21
  48. package/styles/auto-complete/_all.scss +1 -1
  49. package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
  50. package/styles/auto-complete/_bootstrap-definition.scss +2 -2
  51. package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
  52. package/styles/auto-complete/_bootstrap5-definition.scss +2 -2
  53. package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
  54. package/styles/auto-complete/_fabric-definition.scss +2 -2
  55. package/styles/auto-complete/_fluent-definition.scss +2 -2
  56. package/styles/auto-complete/_fusionnew-definition.scss +2 -2
  57. package/styles/auto-complete/_highcontrast-definition.scss +2 -2
  58. package/styles/auto-complete/_highcontrast-light-definition.scss +2 -2
  59. package/styles/auto-complete/_material-dark-definition.scss +2 -2
  60. package/styles/auto-complete/_material-definition.scss +2 -2
  61. package/styles/auto-complete/_material3-definition.scss +2 -2
  62. package/styles/auto-complete/_tailwind-definition.scss +2 -2
  63. package/styles/auto-complete/material3-dark.scss +1 -1
  64. package/styles/auto-complete/material3.scss +1 -1
  65. package/styles/combo-box/_all.scss +1 -1
  66. package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
  67. package/styles/combo-box/_bootstrap-definition.scss +2 -2
  68. package/styles/combo-box/_bootstrap4-definition.scss +11 -11
  69. package/styles/combo-box/_bootstrap5-definition.scss +2 -2
  70. package/styles/combo-box/_fabric-dark-definition.scss +2 -2
  71. package/styles/combo-box/_fabric-definition.scss +2 -2
  72. package/styles/combo-box/_fluent-definition.scss +2 -2
  73. package/styles/combo-box/_fusionnew-definition.scss +2 -2
  74. package/styles/combo-box/_highcontrast-definition.scss +2 -2
  75. package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
  76. package/styles/combo-box/_material-dark-definition.scss +2 -2
  77. package/styles/combo-box/_material-definition.scss +2 -2
  78. package/styles/combo-box/_material3-definition.scss +2 -2
  79. package/styles/combo-box/_tailwind-definition.scss +2 -2
  80. package/styles/combo-box/material3-dark.scss +1 -1
  81. package/styles/combo-box/material3.scss +1 -1
  82. package/styles/drop-down-base/_all.scss +2 -2
  83. package/styles/drop-down-base/_bootstrap-dark-definition.scss +83 -83
  84. package/styles/drop-down-base/_bootstrap-definition.scss +83 -83
  85. package/styles/drop-down-base/_bootstrap4-definition.scss +90 -90
  86. package/styles/drop-down-base/_bootstrap5-definition.scss +117 -117
  87. package/styles/drop-down-base/_definition.scss +23 -23
  88. package/styles/drop-down-base/_fabric-dark-definition.scss +86 -86
  89. package/styles/drop-down-base/_fabric-definition.scss +84 -84
  90. package/styles/drop-down-base/_fluent-definition.scss +121 -121
  91. package/styles/drop-down-base/_fusionnew-definition.scss +117 -117
  92. package/styles/drop-down-base/_highcontrast-definition.scss +105 -105
  93. package/styles/drop-down-base/_highcontrast-light-definition.scss +105 -105
  94. package/styles/drop-down-base/_layout.scss +195 -195
  95. package/styles/drop-down-base/_material-dark-definition.scss +86 -86
  96. package/styles/drop-down-base/_material-definition.scss +85 -85
  97. package/styles/drop-down-base/_material3-definition.scss +87 -87
  98. package/styles/drop-down-base/_tailwind-definition.scss +129 -129
  99. package/styles/drop-down-base/_theme.scss +391 -391
  100. package/styles/drop-down-base/material3-dark.scss +1 -1
  101. package/styles/drop-down-base/material3.scss +1 -1
  102. package/styles/drop-down-list/_all.scss +3 -3
  103. package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -157
  104. package/styles/drop-down-list/_bootstrap-definition.scss +156 -156
  105. package/styles/drop-down-list/_bootstrap4-definition.scss +202 -202
  106. package/styles/drop-down-list/_bootstrap5-definition.scss +201 -201
  107. package/styles/drop-down-list/_fabric-dark-definition.scss +128 -128
  108. package/styles/drop-down-list/_fabric-definition.scss +124 -124
  109. package/styles/drop-down-list/_fluent-definition.scss +185 -185
  110. package/styles/drop-down-list/_fusionnew-definition.scss +201 -201
  111. package/styles/drop-down-list/_highcontrast-definition.scss +142 -142
  112. package/styles/drop-down-list/_highcontrast-light-definition.scss +144 -144
  113. package/styles/drop-down-list/_layout.scss +310 -310
  114. package/styles/drop-down-list/_material-dark-definition.scss +143 -143
  115. package/styles/drop-down-list/_material-definition.scss +167 -167
  116. package/styles/drop-down-list/_material3-definition.scss +180 -180
  117. package/styles/drop-down-list/_tailwind-definition.scss +134 -134
  118. package/styles/drop-down-list/_theme.scss +10 -10
  119. package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -14
  120. package/styles/drop-down-list/icons/_bootstrap.scss +14 -14
  121. package/styles/drop-down-list/icons/_bootstrap4.scss +14 -14
  122. package/styles/drop-down-list/icons/_bootstrap5.scss +14 -14
  123. package/styles/drop-down-list/icons/_fabric-dark.scss +14 -14
  124. package/styles/drop-down-list/icons/_fabric.scss +14 -14
  125. package/styles/drop-down-list/icons/_fluent.scss +14 -14
  126. package/styles/drop-down-list/icons/_fusionnew.scss +14 -14
  127. package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
  128. package/styles/drop-down-list/icons/_highcontrast.scss +14 -14
  129. package/styles/drop-down-list/icons/_material-dark.scss +14 -14
  130. package/styles/drop-down-list/icons/_material.scss +14 -14
  131. package/styles/drop-down-list/icons/_material3.scss +14 -14
  132. package/styles/drop-down-list/icons/_tailwind.scss +14 -14
  133. package/styles/drop-down-list/material3-dark.scss +1 -1
  134. package/styles/drop-down-list/material3.scss +1 -1
  135. package/styles/drop-down-tree/_all.scss +2 -2
  136. package/styles/drop-down-tree/_bootstrap-dark-definition.scss +71 -71
  137. package/styles/drop-down-tree/_bootstrap-definition.scss +70 -70
  138. package/styles/drop-down-tree/_bootstrap4-definition.scss +71 -71
  139. package/styles/drop-down-tree/_bootstrap5-definition.scss +59 -59
  140. package/styles/drop-down-tree/_fabric-dark-definition.scss +71 -71
  141. package/styles/drop-down-tree/_fabric-definition.scss +71 -71
  142. package/styles/drop-down-tree/_fluent-definition.scss +65 -65
  143. package/styles/drop-down-tree/_fusionnew-definition.scss +59 -59
  144. package/styles/drop-down-tree/_highcontrast-definition.scss +71 -71
  145. package/styles/drop-down-tree/_highcontrast-light-definition.scss +71 -71
  146. package/styles/drop-down-tree/_layout.scss +1418 -1418
  147. package/styles/drop-down-tree/_material-dark-definition.scss +72 -72
  148. package/styles/drop-down-tree/_material-definition.scss +72 -72
  149. package/styles/drop-down-tree/_material3-definition.scss +76 -76
  150. package/styles/drop-down-tree/_tailwind-definition.scss +61 -61
  151. package/styles/drop-down-tree/_theme.scss +132 -132
  152. package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
  153. package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
  154. package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
  155. package/styles/drop-down-tree/icons/_bootstrap5.scss +11 -11
  156. package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
  157. package/styles/drop-down-tree/icons/_fabric.scss +11 -11
  158. package/styles/drop-down-tree/icons/_fluent.scss +11 -11
  159. package/styles/drop-down-tree/icons/_fusionnew.scss +11 -11
  160. package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
  161. package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
  162. package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
  163. package/styles/drop-down-tree/icons/_material.scss +11 -11
  164. package/styles/drop-down-tree/icons/_material3.scss +11 -11
  165. package/styles/drop-down-tree/icons/_tailwind-dark.scss +11 -11
  166. package/styles/drop-down-tree/icons/_tailwind.scss +11 -11
  167. package/styles/drop-down-tree/material3-dark.scss +1 -1
  168. package/styles/drop-down-tree/material3.scss +1 -1
  169. package/styles/list-box/_all.scss +2 -2
  170. package/styles/list-box/_bootstrap-dark-definition.scss +126 -126
  171. package/styles/list-box/_bootstrap-definition.scss +119 -119
  172. package/styles/list-box/_bootstrap4-definition.scss +124 -124
  173. package/styles/list-box/_bootstrap5-definition.scss +120 -120
  174. package/styles/list-box/_fabric-dark-definition.scss +126 -126
  175. package/styles/list-box/_fabric-definition.scss +119 -119
  176. package/styles/list-box/_fluent-definition.scss +120 -120
  177. package/styles/list-box/_fusionnew-definition.scss +111 -111
  178. package/styles/list-box/_highcontrast-definition.scss +119 -119
  179. package/styles/list-box/_highcontrast-light-definition.scss +126 -126
  180. package/styles/list-box/_layout.scss +542 -542
  181. package/styles/list-box/_material-dark-definition.scss +126 -126
  182. package/styles/list-box/_material-definition.scss +119 -119
  183. package/styles/list-box/_material3-definition.scss +119 -119
  184. package/styles/list-box/_tailwind-definition.scss +119 -119
  185. package/styles/list-box/_theme.scss +382 -382
  186. package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
  187. package/styles/list-box/icons/_bootstrap.scss +25 -25
  188. package/styles/list-box/icons/_bootstrap4.scss +25 -25
  189. package/styles/list-box/icons/_bootstrap5.scss +25 -25
  190. package/styles/list-box/icons/_fabric-dark.scss +25 -25
  191. package/styles/list-box/icons/_fabric.scss +25 -25
  192. package/styles/list-box/icons/_fluent.scss +25 -25
  193. package/styles/list-box/icons/_fusionnew.scss +25 -25
  194. package/styles/list-box/icons/_highcontrast-light.scss +25 -25
  195. package/styles/list-box/icons/_highcontrast.scss +25 -25
  196. package/styles/list-box/icons/_material-dark.scss +25 -25
  197. package/styles/list-box/icons/_material.scss +25 -25
  198. package/styles/list-box/icons/_material3.scss +25 -25
  199. package/styles/list-box/icons/_tailwind-dark.scss +25 -25
  200. package/styles/list-box/icons/_tailwind.scss +25 -25
  201. package/styles/list-box/material3-dark.scss +1 -1
  202. package/styles/list-box/material3.scss +1 -1
  203. package/styles/material3-dark.scss +1 -1
  204. package/styles/material3.scss +1 -1
  205. package/styles/mention/_all.scss +1 -1
  206. package/styles/mention/_bootstrap-dark-definition.scss +3 -3
  207. package/styles/mention/_bootstrap-definition.scss +3 -3
  208. package/styles/mention/_bootstrap4-definition.scss +3 -3
  209. package/styles/mention/_bootstrap5-definition.scss +1 -1
  210. package/styles/mention/_fabric-dark-definition.scss +2 -2
  211. package/styles/mention/_fabric-definition.scss +3 -3
  212. package/styles/mention/_fluent-definition.scss +1 -1
  213. package/styles/mention/_fusionnew-definition.scss +1 -1
  214. package/styles/mention/_highcontrast-definition.scss +3 -3
  215. package/styles/mention/_highcontrast-light-definition.scss +3 -3
  216. package/styles/mention/_layout.scss +6 -6
  217. package/styles/mention/_material-dark-definition.scss +3 -3
  218. package/styles/mention/_material-definition.scss +3 -3
  219. package/styles/mention/_material3-definition.scss +1 -1
  220. package/styles/mention/_tailwind-definition.scss +1 -1
  221. package/styles/mention/material3-dark.scss +1 -1
  222. package/styles/mention/material3.scss +1 -1
  223. package/styles/multi-select/_all.scss +2 -2
  224. package/styles/multi-select/_bootstrap-dark-definition.scss +203 -203
  225. package/styles/multi-select/_bootstrap-definition.scss +192 -192
  226. package/styles/multi-select/_bootstrap4-definition.scss +278 -278
  227. package/styles/multi-select/_bootstrap5-definition.scss +230 -230
  228. package/styles/multi-select/_fabric-dark-definition.scss +192 -192
  229. package/styles/multi-select/_fabric-definition.scss +183 -183
  230. package/styles/multi-select/_fluent-definition.scss +241 -241
  231. package/styles/multi-select/_fusionnew-definition.scss +227 -227
  232. package/styles/multi-select/_highcontrast-definition.scss +303 -303
  233. package/styles/multi-select/_highcontrast-light-definition.scss +297 -297
  234. package/styles/multi-select/_layout.scss +2199 -2199
  235. package/styles/multi-select/_material-dark-definition.scss +230 -230
  236. package/styles/multi-select/_material-definition.scss +223 -223
  237. package/styles/multi-select/_material3-definition.scss +246 -246
  238. package/styles/multi-select/_tailwind-definition.scss +235 -235
  239. package/styles/multi-select/_theme.scss +586 -586
  240. package/styles/multi-select/icons/_bootstrap-dark.scss +26 -26
  241. package/styles/multi-select/icons/_bootstrap.scss +26 -26
  242. package/styles/multi-select/icons/_bootstrap4.scss +37 -37
  243. package/styles/multi-select/icons/_bootstrap5.scss +26 -26
  244. package/styles/multi-select/icons/_fabric-dark.scss +26 -26
  245. package/styles/multi-select/icons/_fabric.scss +26 -26
  246. package/styles/multi-select/icons/_fluent.scss +55 -55
  247. package/styles/multi-select/icons/_fusionnew.scss +26 -26
  248. package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
  249. package/styles/multi-select/icons/_highcontrast.scss +26 -26
  250. package/styles/multi-select/icons/_material-dark.scss +693 -693
  251. package/styles/multi-select/icons/_material.scss +693 -693
  252. package/styles/multi-select/icons/_material3.scss +692 -692
  253. package/styles/multi-select/icons/_tailwind.scss +26 -26
  254. package/styles/multi-select/material3-dark.scss +1 -1
  255. package/styles/multi-select/material3.scss +1 -1
  256. package/tslint.json +111 -0
@@ -1,22 +1,22 @@
1
- var __extends = (this && this.__extends) || (function () {
2
- var extendStatics = function (d, b) {
3
- extendStatics = Object.setPrototypeOf ||
4
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
- return extendStatics(d, b);
7
- };
8
- return function (d, b) {
9
- extendStatics(d, b);
10
- function __() { this.constructor = d; }
11
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
- };
13
- })();
14
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
- return c > 3 && r && Object.defineProperty(target, key, r), r;
19
- };
1
+ var __extends = (this && this.__extends) || (function () {
2
+ var extendStatics = function (d, b) {
3
+ extendStatics = Object.setPrototypeOf ||
4
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
+ return extendStatics(d, b);
7
+ };
8
+ return function (d, b) {
9
+ extendStatics(d, b);
10
+ function __() { this.constructor = d; }
11
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
+ };
13
+ })();
14
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
19
+ };
20
20
  import { Input, TextBox } from '@syncfusion/ej2-inputs';
21
21
  import { createCheckBox } from '@syncfusion/ej2-buttons';
22
22
  import { NotifyPropertyChanges, Property, Event, SanitizeHtmlHelper } from '@syncfusion/ej2-base';
@@ -253,14 +253,17 @@ var DropDownTree = /** @class */ (function (_super) {
253
253
  DropDownTree.prototype.render = function () {
254
254
  var isTree = select('#' + this.element.id + '_tree', document);
255
255
  if (isTree) {
256
- var popupDiv = select('#' + this.element.id + '_popup', document);
256
+ var popupDiv = select('#' + this.element.id + '_options', document);
257
257
  detach(popupDiv ? popupDiv : isTree.parentElement);
258
258
  }
259
259
  this.ensureAutoCheck();
260
260
  if (this.element.tagName === 'INPUT') {
261
261
  this.inputEle = this.element;
262
262
  if (isNOU(this.inputEle.getAttribute('role'))) {
263
- this.inputEle.setAttribute('role', 'textbox');
263
+ this.inputEle.setAttribute('aria-expanded', 'false');
264
+ this.inputEle.setAttribute('role', 'combobox');
265
+ this.inputEle.setAttribute('aria-haspopup', 'tree');
266
+ this.inputEle.setAttribute('aria-controls', this.element.id + "_options");
264
267
  }
265
268
  if (isNOU(this.inputEle.getAttribute('type'))) {
266
269
  this.inputEle.setAttribute('type', 'text');
@@ -428,8 +431,12 @@ var DropDownTree = /** @class */ (function (_super) {
428
431
  }
429
432
  _this.treeObj.fields = _this.getTreeFields(fields);
430
433
  _this.treeObj.dataBind();
431
- if (_this.hasTemplate && _this.portals) {
432
- _this.portals = [].concat(_this.treeObj.portals);
434
+ if (_this.hasTemplate && _this.portals && _this.treeObj.portals) {
435
+ for (var i = 0; i < _this.treeObj.portals.length; i++) {
436
+ if (_this.portals.indexOf(_this.treeObj.portals[i]) == -1) {
437
+ _this.portals.push(_this.treeObj.portals[i]);
438
+ }
439
+ }
433
440
  if (_this.isReact) {
434
441
  _this.renderReactTemplates();
435
442
  }
@@ -889,16 +896,7 @@ var DropDownTree = /** @class */ (function (_super) {
889
896
  }
890
897
  };
891
898
  DropDownTree.prototype.getAriaAttributes = function () {
892
- var disable = this.enabled ? 'false' : 'true';
893
- return {
894
- 'aria-disabled': disable,
895
- 'aria-owns': this.element.id + '_options',
896
- 'role': 'listbox',
897
- 'aria-haspopup': 'true',
898
- 'aria-expanded': 'false',
899
- 'aria-activedescendant': 'null',
900
- 'aria-labelledby': this.hiddenElement.id
901
- };
899
+ return {};
902
900
  };
903
901
  DropDownTree.prototype.updateOverFlowView = function () {
904
902
  this.overFlowWrapper.classList.remove(TOTAL_COUNT_WRAPPER);
@@ -1249,7 +1247,7 @@ var DropDownTree = /** @class */ (function (_super) {
1249
1247
  }
1250
1248
  }
1251
1249
  else {
1252
- this.inputWrapper.setAttribute(htmlAttr, this.htmlAttributes["" + htmlAttr]);
1250
+ this.inputEle.setAttribute(htmlAttr, this.htmlAttributes["" + htmlAttr]);
1253
1251
  }
1254
1252
  }
1255
1253
  }
@@ -1503,8 +1501,10 @@ var DropDownTree = /** @class */ (function (_super) {
1503
1501
  addClass([_this.inputWrapper], [ICONANIMATION]);
1504
1502
  if (_this.isFirstRender) {
1505
1503
  _this.popupEle = _this.createElement('div', {
1506
- id: _this.element.id + '_popup', className: POPUP_CLASS + ' ' + (_this.cssClass != null ? _this.cssClass : '')
1504
+ id: _this.element.id + '_options', className: POPUP_CLASS + ' ' + (_this.cssClass != null ? _this.cssClass : '')
1507
1505
  });
1506
+ _this.popupEle.setAttribute('role', 'region');
1507
+ _this.popupEle.setAttribute('aria-label', _this.element.id);
1508
1508
  document.body.appendChild(_this.popupEle);
1509
1509
  _this.createPopup(_this.popupEle);
1510
1510
  }
@@ -1540,7 +1540,7 @@ var DropDownTree = /** @class */ (function (_super) {
1540
1540
  }
1541
1541
  }
1542
1542
  if (!isCancelled) {
1543
- attributes(_this.inputWrapper, { 'aria-expanded': 'true' });
1543
+ attributes(_this.inputEle, { 'aria-expanded': 'true' });
1544
1544
  _this.popupObj.show(null, (_this.zIndex === 1000) ? _this.inputEle : null);
1545
1545
  removeClass([_this.popupEle], DDTHIDEICON);
1546
1546
  _this.updatePopupHeight();
@@ -1992,8 +1992,12 @@ var DropDownTree = /** @class */ (function (_super) {
1992
1992
  }
1993
1993
  };
1994
1994
  DropDownTree.prototype.onNodeExpanded = function (args) {
1995
- if (this.hasTemplate && this.portals) {
1996
- this.portals = [].concat(this.treeObj.portals);
1995
+ if (this.hasTemplate && this.portals && this.treeObj.portals) {
1996
+ for (var i = 0; i < this.treeObj.portals.length; i++) {
1997
+ if (this.portals.indexOf(this.treeObj.portals[i]) == -1) {
1998
+ this.portals.push(this.treeObj.portals[i]);
1999
+ }
2000
+ }
1997
2001
  /* eslint-enable */
1998
2002
  this.renderReactTemplates();
1999
2003
  }
@@ -3027,7 +3031,7 @@ var DropDownTree = /** @class */ (function (_super) {
3027
3031
  if (this.popupEle) {
3028
3032
  addClass([this.popupEle], DDTHIDEICON);
3029
3033
  }
3030
- attributes(this.inputWrapper, { 'aria-expanded': 'false' });
3034
+ attributes(this.inputEle, { 'aria-expanded': 'false' });
3031
3035
  if (this.popupObj && this.isPopupOpen) {
3032
3036
  this.popupObj.hide();
3033
3037
  if (this.inputFocus) {
@@ -1,4 +1,4 @@
1
- import { Input, InputObject } from '@syncfusion/ej2-inputs';
1
+ import { Input, InputObject } from '@syncfusion/ej2-inputs';import { DropDownBase, dropDownBaseClasses, FilteringEventArgs, SelectEventArgs } from '../drop-down-base/drop-down-base';import { FieldSettingsModel } from '../drop-down-base/drop-down-base-model';import { EventHandler, closest, removeClass, addClass, Complex, Property, ChildProperty, BaseEventArgs, L10n } from '@syncfusion/ej2-base';import { ModuleDeclaration, NotifyPropertyChanges, getComponent, EmitType, Event, extend, detach, attributes } from '@syncfusion/ej2-base';import { getUniqueID, Browser, formatUnit, isNullOrUndefined, getValue } from '@syncfusion/ej2-base';import { prepend, append } from '@syncfusion/ej2-base';import { cssClass, Sortable, moveTo } from '@syncfusion/ej2-lists';import { Button } from '@syncfusion/ej2-buttons';import { createSpinner, showSpinner, hideSpinner, getZindexPartial } from '@syncfusion/ej2-popups';import { DataManager, Query } from '@syncfusion/ej2-data';
2
2
  import {SelectionMode,CheckBoxPosition,ToolBarPosition,BeforeItemRenderEventArgs,ListBoxChangeEventArgs,DropEventArgs,DragEventArgs} from "./list-box";
3
3
  import {DropDownBaseModel} from "../drop-down-base/drop-down-base-model";
4
4
 
@@ -8,34 +8,34 @@ import {DropDownBaseModel} from "../drop-down-base/drop-down-base-model";
8
8
  export interface SelectionSettingsModel {
9
9
 
10
10
  /**
11
- * Specifies the selection modes. The possible values are
12
- * * `Single`: Allows you to select a single item in the ListBox.
13
- * * `Multiple`: Allows you to select more than one item in the ListBox.
14
- *
15
- * @default 'Multiple'
16
- */
17
- mode?: SelectionMode;
11
+ * Specifies the selection modes. The possible values are
12
+ * * `Single`: Allows you to select a single item in the ListBox.
13
+ * * `Multiple`: Allows you to select more than one item in the ListBox.
14
+ *
15
+ * @default 'Multiple'
16
+ */
17
+ mode?: SelectionMode;
18
18
 
19
19
  /**
20
- * If 'showCheckbox' is set to true, then 'checkbox' will be visualized in the list item.
21
- *
22
- * @default false
23
- */
24
- showCheckbox?: boolean;
20
+ * If 'showCheckbox' is set to true, then 'checkbox' will be visualized in the list item.
21
+ *
22
+ * @default false
23
+ */
24
+ showCheckbox?: boolean;
25
25
 
26
26
  /**
27
- * Allows you to either show or hide the selectAll option on the component.
28
- *
29
- * @default false
30
- */
31
- showSelectAll?: boolean;
27
+ * Allows you to either show or hide the selectAll option on the component.
28
+ *
29
+ * @default false
30
+ */
31
+ showSelectAll?: boolean;
32
32
 
33
33
  /**
34
- * Set the position of the checkbox.
35
- *
36
- * @default 'Left'
37
- */
38
- checkboxPosition?: CheckBoxPosition;
34
+ * Set the position of the checkbox.
35
+ *
36
+ * @default 'Left'
37
+ */
38
+ checkboxPosition?: CheckBoxPosition;
39
39
 
40
40
  }
41
41
 
@@ -45,22 +45,22 @@ export interface SelectionSettingsModel {
45
45
  export interface ToolbarSettingsModel {
46
46
 
47
47
  /**
48
- * Specifies the list of tools for dual ListBox.
49
- * The predefined tools are 'moveUp', 'moveDown', 'moveTo', 'moveFrom', 'moveAllTo', and 'moveAllFrom'.
50
- *
51
- * @default []
52
- */
53
- items?: string[];
48
+ * Specifies the list of tools for dual ListBox.
49
+ * The predefined tools are 'moveUp', 'moveDown', 'moveTo', 'moveFrom', 'moveAllTo', and 'moveAllFrom'.
50
+ *
51
+ * @default []
52
+ */
53
+ items?: string[];
54
54
 
55
55
  /**
56
- * Positions the toolbar before/after the ListBox.
57
- * The possible values are:
58
- * * Left: The toolbar will be positioned to the left of the ListBox.
59
- * * Right: The toolbar will be positioned to the right of the ListBox.
60
- *
61
- * @default 'Right'
62
- */
63
- position?: ToolBarPosition;
56
+ * Positions the toolbar before/after the ListBox.
57
+ * The possible values are:
58
+ * * Left: The toolbar will be positioned to the left of the ListBox.
59
+ * * Right: The toolbar will be positioned to the right of the ListBox.
60
+ *
61
+ * @default 'Right'
62
+ */
63
+ position?: ToolBarPosition;
64
64
 
65
65
  }
66
66
 
@@ -70,211 +70,211 @@ export interface ToolbarSettingsModel {
70
70
  export interface ListBoxModel extends DropDownBaseModel{
71
71
 
72
72
  /**
73
- * Sets the CSS classes to root element of this component, which helps to customize the
74
- * complete styles.
75
- *
76
- * @default ''
77
- */
78
- cssClass?: string;
73
+ * Sets the CSS classes to root element of this component, which helps to customize the
74
+ * complete styles.
75
+ *
76
+ * @default ''
77
+ */
78
+ cssClass?: string;
79
79
 
80
80
  /**
81
- * Sets the specified item to the selected state or gets the selected item in the ListBox.
82
- *
83
- * @default []
84
- * @aspType object
85
- * @isGenericType true
86
- */
87
- value?: string[] | number[] | boolean[];
81
+ * Sets the specified item to the selected state or gets the selected item in the ListBox.
82
+ *
83
+ * @default []
84
+ * @aspType object
85
+ * @isGenericType true
86
+ */
87
+ value?: string[] | number[] | boolean[];
88
88
 
89
89
  /**
90
- * Sets the height of the ListBox component.
91
- *
92
- * @default ''
93
- */
94
- height?: number | string;
90
+ * Sets the height of the ListBox component.
91
+ *
92
+ * @default ''
93
+ */
94
+ height?: number | string;
95
95
 
96
96
  /**
97
- * Specifies a value that indicates whether the component is enabled or not.
98
- *
99
- * @default true
100
- * @deprecated
101
- */
102
- enabled?: boolean;
97
+ * Specifies a value that indicates whether the component is enabled or not.
98
+ *
99
+ * @default true
100
+
101
+ */
102
+ enabled?: boolean;
103
103
 
104
104
  /**
105
- * Enable or disable persisting component's state between page reloads.
106
- * If enabled, following list of states will be persisted.
107
- * 1. value
108
- *
109
- * @default false
110
- * @deprecated
111
- */
112
- enablePersistence?: boolean;
105
+ * Enable or disable persisting component's state between page reloads.
106
+ * If enabled, following list of states will be persisted.
107
+ * 1. value
108
+ *
109
+ * @default false
110
+
111
+ */
112
+ enablePersistence?: boolean;
113
113
 
114
114
  /**
115
- * If 'allowDragAndDrop' is set to true, then you can perform drag and drop of the list item.
116
- * ListBox contains same 'scope' property enables drag and drop between multiple ListBox.
117
- *
118
- * @default false
119
- */
120
- allowDragAndDrop?: boolean;
115
+ * If 'allowDragAndDrop' is set to true, then you can perform drag and drop of the list item.
116
+ * ListBox contains same 'scope' property enables drag and drop between multiple ListBox.
117
+ *
118
+ * @default false
119
+ */
120
+ allowDragAndDrop?: boolean;
121
121
 
122
122
  /**
123
- * Sets limitation to the value selection.
124
- * based on the limitation, list selection will be prevented.
125
- *
126
- * @default 1000
127
- */
128
- maximumSelectionLength?: number;
123
+ * Sets limitation to the value selection.
124
+ * based on the limitation, list selection will be prevented.
125
+ *
126
+ * @default 1000
127
+ */
128
+ maximumSelectionLength?: number;
129
129
 
130
130
  /**
131
- * To enable the filtering option in this component.
132
- * Filter action performs when type in search box and collect the matched item through `filtering` event.
133
- * If searching character does not match, `noRecordsTemplate` property value will be shown.
134
- *
135
- * @default false
136
- */
137
- allowFiltering?: boolean;
131
+ * To enable the filtering option in this component.
132
+ * Filter action performs when type in search box and collect the matched item through `filtering` event.
133
+ * If searching character does not match, `noRecordsTemplate` property value will be shown.
134
+ *
135
+ * @default false
136
+ */
137
+ allowFiltering?: boolean;
138
138
 
139
139
  /**
140
- * Defines the scope value to group sets of draggable and droppable ListBox.
141
- * A draggable with the same scope value will be accepted by the droppable.
142
- *
143
- * @default ''
144
- */
145
- scope?: string;
140
+ * Defines the scope value to group sets of draggable and droppable ListBox.
141
+ * A draggable with the same scope value will be accepted by the droppable.
142
+ *
143
+ * @default ''
144
+ */
145
+ scope?: string;
146
146
 
147
147
  /**
148
- * When set to ‘false’, consider the `case-sensitive` on performing the search to find suggestions.
149
- * By default consider the casing.
150
- *
151
- * @default true
152
- * @private
153
- */
154
- ignoreCase?: boolean;
148
+ * When set to ‘false’, consider the `case-sensitive` on performing the search to find suggestions.
149
+ * By default consider the casing.
150
+ *
151
+ * @default true
152
+ * @private
153
+ */
154
+ ignoreCase?: boolean;
155
155
 
156
156
  /**
157
- * Accepts the value to be displayed as a watermark text on the filter bar.
158
- *
159
- * @default null
160
- */
161
- filterBarPlaceholder?: string;
157
+ * Accepts the value to be displayed as a watermark text on the filter bar.
158
+ *
159
+ * @default null
160
+ */
161
+ filterBarPlaceholder?: string;
162
162
 
163
163
  /**
164
- * Triggers while rendering each list item.
165
- *
166
- * @event beforeItemRender
167
- * @blazorProperty 'OnItemRender'
168
- */
169
- beforeItemRender?: EmitType<BeforeItemRenderEventArgs>;
164
+ * Triggers while rendering each list item.
165
+ *
166
+ * @event beforeItemRender
167
+ * @blazorProperty 'OnItemRender'
168
+ */
169
+ beforeItemRender?: EmitType<BeforeItemRenderEventArgs>;
170
170
 
171
171
  /**
172
- * Triggers on typing a character in the component.
173
- *
174
- * @event filtering
175
- * @blazorProperty 'ItemSelected'
176
- */
177
- filtering?: EmitType<FilteringEventArgs>;
172
+ * Triggers on typing a character in the component.
173
+ *
174
+ * @event filtering
175
+ * @blazorProperty 'ItemSelected'
176
+ */
177
+ filtering?: EmitType<FilteringEventArgs>;
178
178
 
179
179
  /**
180
- * Triggers when an item in the popup is selected by the user either with mouse/tap or with keyboard navigation.
181
- *
182
- * @event select
183
- * @private
184
- */
185
- select?: EmitType<SelectEventArgs>;
180
+ * Triggers when an item in the popup is selected by the user either with mouse/tap or with keyboard navigation.
181
+ *
182
+ * @event select
183
+ * @private
184
+ */
185
+ select?: EmitType<SelectEventArgs>;
186
186
 
187
187
  /**
188
- * Triggers while select / unselect the list item.
189
- *
190
- * @event change
191
- * @blazorProperty 'ValueChange'
192
- */
193
- change?: EmitType<ListBoxChangeEventArgs>;
188
+ * Triggers while select / unselect the list item.
189
+ *
190
+ * @event change
191
+ * @blazorProperty 'ValueChange'
192
+ */
193
+ change?: EmitType<ListBoxChangeEventArgs>;
194
194
 
195
195
  /**
196
- * Triggers before dropping the list item on another list item.
197
- *
198
- * @event beforeDrop
199
- * @blazorProperty 'OnDrop'
200
- */
201
- beforeDrop?: EmitType<DropEventArgs>;
196
+ * Triggers before dropping the list item on another list item.
197
+ *
198
+ * @event beforeDrop
199
+ * @blazorProperty 'OnDrop'
200
+ */
201
+ beforeDrop?: EmitType<DropEventArgs>;
202
202
 
203
203
  /**
204
- * Triggers after dragging the list item.
205
- *
206
- * @event dragStart
207
- * @blazorProperty 'DragStart'
208
- */
209
- dragStart?: EmitType<DragEventArgs>;
204
+ * Triggers after dragging the list item.
205
+ *
206
+ * @event dragStart
207
+ * @blazorProperty 'DragStart'
208
+ */
209
+ dragStart?: EmitType<DragEventArgs>;
210
210
 
211
211
  /**
212
- * Triggers while dragging the list item.
213
- *
214
- * @event drag
215
- * @blazorProperty 'Dragging'
216
- */
217
- drag?: EmitType<DragEventArgs>;
212
+ * Triggers while dragging the list item.
213
+ *
214
+ * @event drag
215
+ * @blazorProperty 'Dragging'
216
+ */
217
+ drag?: EmitType<DragEventArgs>;
218
218
 
219
219
  /**
220
- * Triggers before dropping the list item on another list item.
221
- *
222
- * @event drop
223
- * @blazorProperty 'Dropped'
224
- */
225
- drop?: EmitType<DragEventArgs>;
220
+ * Triggers before dropping the list item on another list item.
221
+ *
222
+ * @event drop
223
+ * @blazorProperty 'Dropped'
224
+ */
225
+ drop?: EmitType<DragEventArgs>;
226
226
 
227
227
  /**
228
- * Triggers when data source is populated in the list.
229
- *
230
- * @event dataBound
231
- */
232
- dataBound?: EmitType<Object>;
228
+ * Triggers when data source is populated in the list.
229
+ *
230
+ * @event dataBound
231
+ */
232
+ dataBound?: EmitType<Object>;
233
233
 
234
234
  /**
235
- * Accepts the template design and assigns it to the group headers present in the list.
236
- *
237
- * @default null
238
- * @private
239
- */
240
- groupTemplate?: string;
235
+ * Accepts the template design and assigns it to the group headers present in the list.
236
+ *
237
+ * @default null
238
+ * @private
239
+ */
240
+ groupTemplate?: string;
241
241
 
242
242
  /**
243
- * Accepts the template and assigns it to the list content of the ListBox component
244
- * when the data fetch request from the remote server fails.
245
- *
246
- * @default 'Request Failed'
247
- * @private
248
- */
249
- actionFailureTemplate?: string;
243
+ * Accepts the template and assigns it to the list content of the ListBox component
244
+ * when the data fetch request from the remote server fails.
245
+ *
246
+ * @default 'Request Failed'
247
+ * @private
248
+ */
249
+ actionFailureTemplate?: string;
250
250
 
251
251
  /**
252
- * specifies the z-index value of the component popup element.
253
- *
254
- * @default 1000
255
- * @private
256
- */
257
- zIndex?: number;
252
+ * specifies the z-index value of the component popup element.
253
+ *
254
+ * @default 1000
255
+ * @private
256
+ */
257
+ zIndex?: number;
258
258
 
259
259
  /**
260
- * ignoreAccent set to true, then ignores the diacritic characters or accents when filtering.
261
- *
262
- * @private
263
- */
264
- ignoreAccent?: boolean;
260
+ * ignoreAccent set to true, then ignores the diacritic characters or accents when filtering.
261
+ *
262
+ * @private
263
+ */
264
+ ignoreAccent?: boolean;
265
265
 
266
266
  /**
267
- * Specifies the toolbar items and its position.
268
- *
269
- * @default { items: [], position: 'Right' }
270
- */
271
- toolbarSettings?: ToolbarSettingsModel;
267
+ * Specifies the toolbar items and its position.
268
+ *
269
+ * @default { items: [], position: 'Right' }
270
+ */
271
+ toolbarSettings?: ToolbarSettingsModel;
272
272
 
273
273
  /**
274
- * Specifies the selection mode and its type.
275
- *
276
- * @default { mode: 'Multiple', type: 'Default' }
277
- */
278
- selectionSettings?: SelectionSettingsModel;
274
+ * Specifies the selection mode and its type.
275
+ *
276
+ * @default { mode: 'Multiple', type: 'Default' }
277
+ */
278
+ selectionSettings?: SelectionSettingsModel;
279
279
 
280
280
  }
@@ -159,7 +159,7 @@ export declare class ListBox extends DropDownBase {
159
159
  * Specifies a value that indicates whether the component is enabled or not.
160
160
  *
161
161
  * @default true
162
- * @deprecated
162
+
163
163
  */
164
164
  enabled: boolean;
165
165
  /**
@@ -168,7 +168,7 @@ export declare class ListBox extends DropDownBase {
168
168
  * 1. value
169
169
  *
170
170
  * @default false
171
- * @deprecated
171
+
172
172
  */
173
173
  enablePersistence: boolean;
174
174
  /**