@progress/kendo-react-popup
Version:
React Popup positions a piece of content next to a specific anchor component. KendoReact Popup package
18 lines (17 loc) • 875 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { CollisionType as CollisionTypeBase } from '@progress/kendo-popup-common';
/**
* 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.
* - `none`—The Popup is rendered at its original position.
*/
export type CollisionType = CollisionTypeBase;