Interface SlotStockSettings<T>

interface SlotStockSettings<T> {
    center?: boolean;
    direction?: "row" | "column";
    gap?: string;
    mapCardToSlot?: ((card) => SlotId);
    selectableCardClass?: string;
    selectedCardClass?: string;
    slotClasses?: string[];
    slotsIds: SlotId[];
    sort?: SortFunction;
    unselectableCardClass?: string;
    wrap?: "wrap" | "nowrap";
}

Type Parameters

  • T

Hierarchy (view full)

Properties

center?: boolean

indicate if the line should be centered (default yes)

direction?: "row" | "column"

Indicate the line direction (default row)

gap?: string

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

mapCardToSlot?: ((card) => SlotId)

How to place the card on a slot automatically

Type declaration

    • (card): SlotId
    • How to place the card on a slot automatically

      Parameters

      • card: T

      Returns SlotId

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.

slotClasses?: string[]

The classes to apply to each slot

slotsIds: SlotId[]

The ids for the slots (can be number or string)

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.

wrap?: "wrap" | "nowrap"

Indicate if the line should wrap when needed (default wrap)

Generated using TypeDoc