@ascentgl/ads-ui 21.125.1 → 21.125.3

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.
@@ -4965,6 +4965,10 @@ class AdsSearchDropdownComponent extends AbstractDropdownComponent {
4965
4965
  */
4966
4966
  super.processOptions(options);
4967
4967
  this.allOptions = new Map(this.displayedOptions);
4968
+ // Notify Angular that the view needs to be re-checked.
4969
+ // Required when a parent component uses OnPush change detection,
4970
+ // otherwise the new options won't render until the next CD cycle.
4971
+ this.cdr.markForCheck();
4968
4972
  });
4969
4973
  }
4970
4974
  /** @ignore */