% Auto-generated: do not edit by hand
\name{dlcTabPanel}

\alias{dlcTabPanel}

\title{TabPanel component}

\description{
A widget which combines a TabBar and a StackedPanel.   {@link https://jupyterlab.github.io/lumino/widgets/classes/tabpanel.html}  This is a simple panel which handles the common case of a tab bar placed next to a content area. The selected tab controls the widget which is shown in the content area. For use cases which require more control than is provided by this panel, the TabBar widget may be used independently. @hideconstructor  @example //Python: import dash import dash_lumino_components as dlc import dash_html_components as html import dash_bootstrap_components as dbc  tabPanel = dlc.TabPanel(     [         dlc.Panel(             html.Div([                 dbc.Button("Open Plot",                            id="button2",                            style={"width": "100\%"})             ]),             id="tab-panel-A"             label="Plots",             icon="fa fa-bar-chart")     ],     id='tab-panel-left')
}

\usage{
dlcTabPanel(children=NULL, id=NULL, addToDom=NULL, allowDeselect=NULL,
currentIndex=NULL, tabPlacement=NULL, tabsMovable=NULL,
width=NULL)
}

\arguments{
\item{children}{A list of or a singular dash component, string or number. The widgets
@type {Panel[]}}

\item{id}{Character. ID of the widget
@type {string}}

\item{addToDom}{Logical. bool if the object has to be added to the dom directly
@type {boolean}}

\item{allowDeselect}{Logical. bool if all tabs can be deselected
@type {boolean}}

\item{currentIndex}{Numeric. Get the index of the currently selected tab. It will be -1 if no tab is selected.
@type {number}}

\item{tabPlacement}{Character. the placement of the tab bar relative to the content. ("left" | "right" | "top" | "bottom")
@type {string}}

\item{tabsMovable}{Logical. whether the tabs are movable by the user
@type {boolean}}

\item{width}{Numeric. the default width or height of the tab panel content
@type {number}}
}

\value{named list of JSON elements corresponding to React.js properties and their values}

