@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.
@@ -6380,7 +6380,7 @@ var DropDownTree = /** @__PURE__ @class */ (function (_super) {
6380
6380
  this.changeState(wrap, 'uncheck');
6381
6381
  this.isReverseUpdate = false;
6382
6382
  }
6383
- else if (wrap && args.action === 'check' && checkedNodes.length === nodes.length && this.isCheckAllCalled) {
6383
+ else if (wrap && args.action === 'check' && checkedNodes.length === nodes.length && (args.isInteracted || this.isCheckAllCalled)) {
6384
6384
  this.isReverseUpdate = true;
6385
6385
  this.isCheckAllCalled = false;
6386
6386
  this.changeState(wrap, 'check');
@@ -17406,9 +17406,7 @@ var Mention = /** @__PURE__ @class */ (function (_super) {
17406
17406
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
17407
17407
  var displayCompTemp = compiledString(this.itemData, this, 'displayTemplate', this.displayTemplateId, this.isStringTemplate, null, this.displayTempElement);
17408
17408
  if (displayCompTemp && displayCompTemp.length > 0) {
17409
- for (var i = 0; i < displayCompTemp.length; i++) {
17410
- this.displayTempElement.appendChild(displayCompTemp[i]);
17411
- }
17409
+ append(displayCompTemp, this.displayTempElement);
17412
17410
  }
17413
17411
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
17414
17412
  if (!this.isReact) {