code quality
Some checks failed
CI / lint-typecheck (pull_request) Failing after 10s
CI / tests (pull_request) Has been skipped
CI / contract-tests (pull_request) Has been skipped
CI / e2e-tests (pull_request) Has been skipped
CI / comment-pr (pull_request) Has been skipped
CI / commit-types (pull_request) Has been skipped

This commit is contained in:
2026-01-27 17:36:39 +01:00
parent 9894c4a841
commit e04282d77e
32 changed files with 431 additions and 246 deletions

View File

@@ -10,6 +10,7 @@ export interface CardProps {
padding?: 'none' | 'sm' | 'md' | 'lg' | number;
onClick?: () => void;
fullHeight?: boolean;
'data-testid'?: string;
/** @deprecated Use semantic props instead. */
className?: string;
/** @deprecated Use semantic props instead. */
@@ -158,6 +159,7 @@ export const Card = forwardRef<HTMLDivElement, CardProps>(({
className={classes}
onClick={onClick}
style={Object.keys(style).length > 0 ? style : undefined}
data-testid={props['data-testid'] as string}
{...props}
>
{title && (