Panel

A simple and convenient panel widget class.
https://jupyterlab.github.io/lumino/widgets/classes/panel.html

This class is suitable to directly display a collection of dash widgets.

Example
//Python:
import dash_lumino_components as dlc
import dash_html_components as html

panelA = dlc.Panel(
    id="panelA",
    children=html.Div("Content"),
    label="Test",
    icon="fa fa-plus")

panelB = dlc.Panel(
    [
        html.Div("Content")
    ],
    id="panelB",
    label="Test",
    icon="fa fa-plus")

Type Definitions

propTypes

Properties
NameTypeDescription
idstring

ID of the widget

labelstring

The label of the panel

iconstring

The icon of the panel (a cass class name)

addToDomboolean

bool if the object has to be added to the dom directly

childrenObject | Array.<Object>

The widgets