UNPKG

@progress/kendo-angular-popup

Version:

Kendo UI Angular Popup component - an easily customized popup from the most trusted provider of professional Angular components.

20 lines (19 loc) 807 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ElementRef } from '@angular/core'; import { AlignStrategy, MarginSettings, OffsetPosition } from '@progress/kendo-popup-common'; import { PositionMode } from './position-mode'; /** * @hidden */ export interface AlignElementSettings { anchor?: HTMLElement; anchorAlign: AlignStrategy; element: ElementRef; elementAlign: AlignStrategy; margin?: MarginSettings; offset?: OffsetPosition; positionMode?: PositionMode; }