@microsoft/windows-admin-center-sdk
Version:
Microsoft - Windows Admin Center Shell
17 lines (16 loc) • 487 B
TypeScript
import { ElementRef } from '@angular/core';
/**
* Representation of a dropdown. Alternative dropdown implementatins can use this to interface with the dropdown service
*/
export interface Dropdown {
toggleElement: ElementRef;
contentElement: ElementRef;
isOpen: boolean;
isContextMenu?: boolean;
left: number;
top: number;
overflowX: boolean;
overflowY: boolean;
autoWidth: boolean;
dropdownApplyFormFieldOffsetWidth: boolean;
}