Add missing type

pull/6011/head
Cagatay Civici 2024-07-01 16:54:53 +03:00
parent 225181e6d8
commit 9352edaf51
1 changed files with 17 additions and 6 deletions

View File

@ -12,20 +12,31 @@ import { ColorSchemeDesignToken } from '..';
export interface VirtualScrollerDesignTokens extends ColorSchemeDesignToken<VirtualScrollerDesignTokens> {
/**
* Used to pass tokens of the root section
* Used to pass tokens of the mask section
*/
mask?: {
loaderMask?: {
/**
* Background of mask
* Background of loader mask
*
* @designToken mask.background
* @designToken virtualscroller.loader.mask.background
*/
background?: string;
/**
* Color of mask
* Color of loader mask
*
* @designToken mask.color
* @designToken virtualscroller.loader.mask.color
*/
color?: string;
};
/**
* Used to pass tokens of the loader icon section
*/
loaderIcon?: {
/**
* Size of the loader icon
*
* @designToken virtualscroller.loader.icon.size
*/
size?: string;
};
}