@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/fesm2022/eagami-ui.mjs +31 -4
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/eagami-ui.d.ts +3 -0
package/package.json
CHANGED
package/types/eagami-ui.d.ts
CHANGED
|
@@ -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;
|