@mozaic-ds/angular 2.0.15 → 2.0.16

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.15",
3
+ "version": "2.0.16",
4
4
  "type": "module",
5
5
  "peerDependencies": {
6
6
  "@angular/common": ">=20.3.15",
@@ -3403,6 +3403,7 @@ declare function isFlatSection<T>(item: FlatItem<T>): item is FlatSection;
3403
3403
  declare function isFlatOption<T>(item: FlatItem<T>): item is FlatOption<T>;
3404
3404
 
3405
3405
  declare class MozComboboxComponent<T = string> implements ControlValueAccessor {
3406
+ private readonly _doc;
3406
3407
  /** Items to display (flat options or sections) */
3407
3408
  readonly items: _angular_core.InputSignal<MozComboboxItem<T>[]>;
3408
3409
  /** Currently selected value(s) — two-way binding with model() */