@progress/kendo-angular-indicators
Version:
Kendo UI Indicators for Angular
31 lines (30 loc) • 1.15 kB
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 animation settings for the Skeleton component.
*
* The possible values are:
* - `pulse`—(Default) Shows a pulse animation effect.
* - `wave`—Shows a wave animation effect.
* - `false`—Disables the animation. (Boolean, not a string)
*/
export type SkeletonAnimation = false | 'pulse' | 'wave';
/**
* @hidden
*/
export declare const validAnimations: SkeletonAnimation[];
/**
* Specifies the shape of the Skeleton component.
*
* The possible values are:
* - `text`—(Default) Renders a line Skeleton.
* - `circle`—Renders a circular Skeleton.
* - `rectangle`—Renders a rectangular Skeleton.
*/
export type SkeletonShape = 'circle' | 'rectangle' | 'text';
/**
* @hidden
*/
export declare const validShapes: SkeletonShape[];