@syncfusion/ej2-dropdowns 21.1.37 → 21.1.38

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.
@@ -6273,7 +6273,7 @@ let DropDownTree = class DropDownTree extends Component {
6273
6273
  this.changeState(wrap, 'uncheck');
6274
6274
  this.isReverseUpdate = false;
6275
6275
  }
6276
- else if (wrap && args.action === 'check' && checkedNodes.length === nodes.length && this.isCheckAllCalled) {
6276
+ else if (wrap && args.action === 'check' && checkedNodes.length === nodes.length && (args.isInteracted || this.isCheckAllCalled)) {
6277
6277
  this.isReverseUpdate = true;
6278
6278
  this.isCheckAllCalled = false;
6279
6279
  this.changeState(wrap, 'check');
@@ -17138,9 +17138,7 @@ let Mention = class Mention extends DropDownBase {
17138
17138
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
17139
17139
  const displayCompTemp = compiledString(this.itemData, this, 'displayTemplate', this.displayTemplateId, this.isStringTemplate, null, this.displayTempElement);
17140
17140
  if (displayCompTemp && displayCompTemp.length > 0) {
17141
- for (let i = 0; i < displayCompTemp.length; i++) {
17142
- this.displayTempElement.appendChild(displayCompTemp[i]);
17143
- }
17141
+ append(displayCompTemp, this.displayTempElement);
17144
17142
  }
17145
17143
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
17146
17144
  if (!this.isReact) {