@progress/kendo-angular-popup
Version:
Kendo UI Angular Popup component - an easily customized popup from the most trusted provider of professional Angular components.
27 lines (26 loc) • 946 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* The animation settings for the Popup component.
*/
export interface PopupAnimation {
/**
* The type of the animation.
* @default 'slide'
*/
type?: AnimationType;
/**
* The animation duration in milliseconds.
* @default 100
*/
duration: number;
/**
* The animation direction. Applicable if the type is set to `slide` or `expand`.
* @default 'down'
*/
direction: AnimationDirection;
}
export type AnimationType = 'slide' | 'expand' | 'zoom' | 'fade';
export type AnimationDirection = 'down' | 'up' | 'left' | 'right';