lories.application.view.pages.layout.card#
Classes#
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]
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