lories.application.view.pages.layout.card#

Classes#

PageCard

All the operations on a read-write sequence.

Module Contents#

class lories.application.view.pages.layout.card.PageCard(horizontal: bool = True, style: Dict[str, Any] = None, **kwargs)#

Bases: dash_bootstrap_components.Card, collections.abc.MutableSequence[PageCardItem]

Inheritance diagram of lories.application.view.pages.layout.card.PageCard

All the operations on a read-write sequence.

Concrete subclasses must provide __new__ or __init__, __getitem__, __setitem__, __delitem__, __len__, and insert().

append(*children: Any, focus: bool = False) None#

S.append(value) – append value to the end of the sequence

extend(items: Iterable[PageCardItem] | PageCard) None#

S.extend(iterable) – extend sequence by appending elements from the iterable

insert(index: int, item: PageCardItem) None#

S.insert(index, value) – insert value before index