@progress/kendo-angular-indicators
Version:
Kendo UI Indicators for Angular
16 lines (15 loc) • 931 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Specifies the position of the Badge relative to the edge of the parent container element
* ([see example]({% slug alignandposition_badge %}#toc-position)).
*
* The possible values are:
* * `edge` (Default)—The center of the Badge is positioned on the edge of the parent container element.
* * `inside`—The Badge is entirely positioned inside the edge of the parent container element.
* * `outside`—The Badge is entirely positioned outside the edge of the parent container element.
*
*/
export type BadgePosition = 'edge' | 'outside' | 'inside';