From 8e0fbd84702e89001d6bac202aa550225a11ae96 Mon Sep 17 00:00:00 2001 From: Darya Umrikhina Date: Wed, 24 Jul 2024 17:54:11 +0400 Subject: [PATCH] Shared:Components:ColorTheme: change types for LinkColorTheme --- packages/shared/components/color-theme/ColorTheme.types.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/shared/components/color-theme/ColorTheme.types.ts b/packages/shared/components/color-theme/ColorTheme.types.ts index 0f1b0682b4..95df3c008a 100644 --- a/packages/shared/components/color-theme/ColorTheme.types.ts +++ b/packages/shared/components/color-theme/ColorTheme.types.ts @@ -24,7 +24,7 @@ // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode -import { TColorScheme, TTheme } from "../../themes"; +import { TColorScheme } from "../../themes"; import { IconButtonProps } from "../icon-button/IconButton.types"; import { LinkProps } from "../link/Link.types"; @@ -109,6 +109,8 @@ export interface VersionBadgeTheme extends DefaultColorThemeProps { export interface LinkColorTheme extends LinkProps, DefaultColorThemeProps { themeId: ThemeId.Link; noHover?: boolean; + tag?: string; + truncate?: boolean; $currentColorScheme?: TColorScheme; onClick?: (e: React.MouseEvent) => void; }