@progress/kendo-angular-dialog
Version:
Dialog Package for Angular
21 lines (20 loc) • 822 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* @hidden
*/
export type WindowPosition = 'absolute' | 'fixed';
/**
* Represents the possible states of the Window component.
*/
export type WindowState = 'minimized' | 'maximized' | 'default';
/**
* Represents the dimensions of the Window that can be resized dynamically.
*/
export type WindowDimensionSetting = 'width' | 'height';
/**
* Represents the offset of the Window that can be set dynamically.
*/
export type WindowOffsetSetting = 'top' | 'left';