interface CardPanelProps {
    children?: ReactNode;
    collapseOnlyByIcon?: boolean;
    contentAutoHeight?: boolean;
    data-panel-id?: string;
    data-qaid?: string;
    dragHandlerClassName?: string;
    flexDirection?: CardPanelFlexDirection;
    forwardRef?: RefObject<HTMLDivElement>;
    hasHeaderLine?: boolean;
    headerAutoHeight?: boolean;
    helperText?: ReactNode;
    helperTitle?: string;
    hideOverflow?: boolean;
    internal?: boolean;
    isCollapsed?: boolean;
    isDraggable?: boolean;
    isSticky?: boolean;
    isWide?: boolean;
    leftExtraItems?: ReactNode;
    mountOnExpand?: boolean;
    noBodyPadding?: boolean;
    onToggleCollapse?: ((isCollapsed: boolean) => void);
    overflowType?: OVERFLOW_TYPE;
    resizerOptions?: CardPanelResizerOptions;
    rightExtraItems?: ReactNode;
    theme?: CardPanelTheme;
    title?: ReactNode;
    titleTooltip?: string;
}

Properties

children?: ReactNode
collapseOnlyByIcon?: boolean
contentAutoHeight?: boolean
data-panel-id?: string
data-qaid?: string
dragHandlerClassName?: string
flexDirection?: CardPanelFlexDirection
forwardRef?: RefObject<HTMLDivElement>
hasHeaderLine?: boolean
headerAutoHeight?: boolean
helperText?: ReactNode
helperTitle?: string
hideOverflow?: boolean

Следует использовать overflowType

@universe-platform/uikit 2.0.0

internal?: boolean
isCollapsed?: boolean
isDraggable?: boolean
isSticky?: boolean
isWide?: boolean
leftExtraItems?: ReactNode
mountOnExpand?: boolean
noBodyPadding?: boolean
onToggleCollapse?: ((isCollapsed: boolean) => void)
overflowType?: OVERFLOW_TYPE
resizerOptions?: CardPanelResizerOptions
rightExtraItems?: ReactNode
title?: ReactNode
titleTooltip?: string