Create a toggleable hidden sidebar using the Offcanvas component. Toggle the visibility with the `is_open` prop.
dbcOffcanvas(children=NULL, id=NULL, style=NULL, class_name=NULL,
className=NULL, labelledby=NULL, labelledBy=NULL,
backdrop=NULL, backdrop_class_name=NULL,
backdropClassName=NULL, keyboard=NULL, is_open=NULL,
placement=NULL, scrollable=NULL, autofocus=NULL,
autoFocus=NULL, title=NULL, close_button=NULL,
loading_state=NULL)
A list of or a singular dash component, string or number. The children of this component
Character. The ID of this component, used to identify dash components in callbacks. The ID needs to be unique across all of the components in an app.
Named list. Defines CSS styles which will override styles previously set.
Character. Often used with CSS to style elements with common properties.
Character. **DEPRECATED** - Use class_name instead.
Often used with CSS to style elements with common properties.
Character. The ARIA labelledby attribute
Character. **DEPRECATED** Use `labelledby` instead
The ARIA labelledby attribute
Logical | a value equal to: 'static'. Includes an offcanvas-backdrop element. Alternatively, specify 'static' for a backdrop which doesn't close the modal on click.
Character. CSS class to apply to the backdrop.
Character. **DEPRECATED** - Use backdrop_class_name instead.
CSS class to apply to the backdrop.
Logical. Close the offcanvas when escape key is pressed.
Logical. Whether offcanvas is currently open.
A value equal to: 'start', 'end', 'top', 'bottom'. Which side of the viewport the offcanvas will appear from.
Logical. Allow body scrolling while offcanvas is open.
Logical. Puts the focus on the offcanvas when initialized.
Logical. **DEPRECATED** Use `autofocus` instead
Puts the focus on the modal when initialized.
Character. The header title
Logical. Specify whether the Component should contain a close button in the header
Lists containing elements 'is_loading', 'prop_name', 'component_name'. those elements have the following types: - is_loading (logical; optional): determines if the component is loading or not - prop_name (character; optional): holds which property is loading - component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer
named list of JSON elements corresponding to React.js properties and their values