@progress/kendo-angular-pivotgrid
Version:
PivotGrid package for Angular
48 lines (47 loc) • 1.98 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { LoaderSize as LoaderSizeSource, LoaderThemeColor as LoaderThemeColorSource, LoaderType as LoaderTypeSource } from '@progress/kendo-angular-indicators';
/**
* Specifies the size of the PivotGrid's loader.
*
* The available values are:
* * `small`
* * `medium`
* * `large`(Default)
*/
export declare type LoaderSize = Partial<LoaderSizeSource>;
/**
* Specifies the theme color of the PivotGrid's loader.
*
* The available values are:
* * `primary`(Default)—Applies coloring based on primary theme color.
* * `secondary`—Applies coloring based on secondary theme color.
* * `tertiary`—Applies coloring based on tertiary theme color.
* * `info`—Applies coloring based on info theme color.
* * `success`—Applies coloring based on success theme color.
* * `warning`—Applies coloring based on warning theme color.
* * `error`—Applies coloring based on error theme color.
* * `dark`—Applies coloring based on dark theme color.
* * `light`—Applies coloring based on light theme color.
* * `inverse`—Applies coloring based on inverted theme color.
*/
export declare type LoaderThemeColor = Partial<LoaderThemeColorSource>;
/**
* Specifies the theme color of the PivotGrid's loader.
*
* The available values are:
* * `pulsing`
* * `infinite-spinner`
* * `converging-spinner`(Default)
*/
export declare type LoaderType = Partial<LoaderTypeSource>;
/**
* Specifies the type, size and color of the PivotGrid's loader.
*/
export interface LoaderSettings {
size?: LoaderSize;
themeColor?: LoaderThemeColor;
type?: LoaderType;
}