interface AllVisibleDeckSettings {
    counter?: DeckCounter;
    direction?: "vertical" | "horizontal";
    horizontalShift?: string;
    selectableCardClass?: string;
    selectedCardClass?: string;
    shift?: string;
    sort?: SortFunction;
    unselectableCardClass?: string;
    verticalShift?: string;
}

Hierarchy (view full)

Properties

counter?: DeckCounter

Show a card counter on the deck. Not visible if unset.

direction?: "vertical" | "horizontal"

The direction when it expands (default 'vertical')

horizontalShift?: string

The horizontal shift between each card (default 3). Overrides shift.

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.

shift?: string

The shift between each card (default 3). Will be ignored if verticalShift and horizontalShift are set.

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.

verticalShift?: string

The vertical shift between each card (default 3). Overrides shift.

Generated using TypeDoc