@eagami/ui 0.11.0 → 0.11.1

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": "@eagami/ui",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "description": "Lightweight, accessible Angular UI component library built on CSS custom properties",
5
5
  "author": "Michal Wiraszka <michal@eagami.com>",
6
6
  "license": "MIT",
@@ -548,6 +548,8 @@ interface DropdownOption {
548
548
  }
549
549
  declare class DropdownComponent implements ControlValueAccessor {
550
550
  private readonly elRef;
551
+ private readonly menuEl;
552
+ private readonly destroyRef;
551
553
  readonly label: _angular_core.InputSignal<string | undefined>;
552
554
  readonly placeholder: _angular_core.InputSignal<string>;
553
555
  readonly options: _angular_core.InputSignal<DropdownOption[]>;
@@ -574,6 +576,7 @@ declare class DropdownComponent implements ControlValueAccessor {
574
576
  'ea-dropdown__trigger--open': boolean;
575
577
  'ea-dropdown__trigger--disabled': boolean;
576
578
  }>;
579
+ constructor();
577
580
  writeValue(val: string): void;
578
581
  registerOnChange(fn: (value: string) => void): void;
579
582
  registerOnTouched(fn: () => void): void;