@mozaic-ds/angular 2.0.20 → 2.0.21

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mozaic-ds/angular",
3
- "version": "2.0.20",
3
+ "version": "2.0.21",
4
4
  "type": "module",
5
5
  "peerDependencies": {
6
6
  "@angular/common": ">=20.3.15",
@@ -3473,6 +3473,9 @@ declare class MozComboboxComponent<T = string> implements ControlValueAccessor {
3473
3473
  private readonly _labelCache;
3474
3474
  /** Tracks whether items have ever been provided (distinguishes async-on-demand from pre-loaded) */
3475
3475
  private readonly _hasReceivedItems;
3476
+ /** True while waiting for external search results (prevents empty-state flash during debounce) */
3477
+ private readonly _searchPending;
3478
+ private _searchPendingTimer;
3476
3479
  /** CVA callbacks */
3477
3480
  private _onChange;
3478
3481
  private _onTouched;