interface ScrollableStockSettings {
    buttonGap?: string;
    center?: boolean;
    gap?: string;
    leftButton: ScrollableStockButtonSettings;
    rightButton: ScrollableStockButtonSettings;
    scrollStep?: number;
    scrollbarVisible?: boolean;
    selectableCardClass?: string;
    selectedCardClass?: string;
    sort?: SortFunction;
    unselectableCardClass?: string;
}

Hierarchy (view full)

Properties

buttonGap?: string

CSS to set the gap between the buttons and the card container. '0' if unset.

center?: boolean

indicate if the line should be centered (default yes)

gap?: string

CSS to set the gap between cards. '8px' if unset.

Setting for the left button

Setting for the right button

scrollStep?: number

indicate the scroll (in px) when clicking the buttons

scrollbarVisible?: boolean

indicate if the scrollbar is visible (default true)

selectableCardClass?: string

The class to apply to selectable cards. Use class from manager is unset.

selectedCardClass?: string

The class to apply to selected cards. Use class from manager is unset.

Indicate the card sorting (unset means no sorting, new cards will be added at the end). For example, use sort: sortFunction('type', '-type_arg') to sort by type then type_arg (in reversed order if prefixed with -). Be sure you typed the values correctly! Else '11' will be before '2'.

unselectableCardClass?: string

The class to apply to selectable cards. Use class from manager is unset.

Generated using TypeDoc