UNPKG

@progress/kendo-angular-pivotgrid

Version:
48 lines (47 loc) 1.98 kB
/**----------------------------------------------------------------------------------------- * 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)&mdash;Applies coloring based on primary theme color. * * `secondary`&mdash;Applies coloring based on secondary theme color. * * `tertiary`&mdash;Applies coloring based on tertiary theme color. * * `info`&mdash;Applies coloring based on info theme color. * * `success`&mdash;Applies coloring based on success theme color. * * `warning`&mdash;Applies coloring based on warning theme color. * * `error`&mdash;Applies coloring based on error theme color. * * `dark`&mdash;Applies coloring based on dark theme color. * * `light`&mdash;Applies coloring based on light theme color. * * `inverse`&mdash;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; }