@progress/kendo-angular-popup
Version:
Kendo UI Angular Popup component - an easily customized popup from the most trusted provider of professional Angular components.
13 lines (12 loc) • 701 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Defines the possible collision behavior when the Popup is not fully visible.
*
* The available options are:
* - `fit`—Moves the Popup horizontally until it is fully displayed in the viewport.
* - `flip`—Flips the Popup position based on the origin and the position properties.
*/
export type CollisionType = 'fit' | 'flip';