From 9352edaf51b0b678d36534a48072a95266e78089 Mon Sep 17 00:00:00 2001 From: Cagatay Civici Date: Mon, 1 Jul 2024 16:54:53 +0300 Subject: [PATCH] Add missing type --- .../themes/types/virtualscroller/index.d.ts | 23 ++++++++++++++----- 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/packages/themes/types/virtualscroller/index.d.ts b/packages/themes/types/virtualscroller/index.d.ts index 1f19e37ab..175091382 100644 --- a/packages/themes/types/virtualscroller/index.d.ts +++ b/packages/themes/types/virtualscroller/index.d.ts @@ -12,20 +12,31 @@ import { ColorSchemeDesignToken } from '..'; export interface VirtualScrollerDesignTokens extends ColorSchemeDesignToken { /** - * 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; + }; }