/** * @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-react-popup'; /** * Defines the possible collision behavior when the Popover is not fully visible. * * The available options are: * - `fit`—Moves the Popover horizontally until it is fully displayed in the viewport. * - `flip`—Flips the Popover position based on the origin and the position properties. * - `none`—The Popover is rendered at its original position. Usable when the Popover is focused on open and the page is scrolled to it. */ export type PopoverCollisionType = CollisionTypeBase;