Plotly Dash Components based on Mantine
Project description
Dash Mantine Components is an extensive (90+) Dash components library based on Mantine React Components Library. It makes it easier to create good quality dashboards with very well designed components out of the box.
Table of contents
Installation
pip install dash-mantine-components
Quickstart
from datetime import date
import dash
from dash import Dash, Input, Output, callback, html
from dash.exceptions import PreventUpdate
import dash_mantine_components as dmc
stylesheets = ["https://unpkg.com/@mantine/dates@7/styles.css"]
dash._dash_renderer._set_react_version('18.2.0')
app = Dash(__name__, external_stylesheets=stylesheets)
app.layout = dmc.MantineProvider(
[
dmc.DatePicker(
id="date-picker",
label="Start Date",
description="You can also provide a description",
minDate=date(2020, 8, 5),
value=None,
w=200
),
dmc.Space(h=10),
dmc.Text(id="selected-date"),
]
)
@callback(Output("selected-date", "children"), Input("date-picker", "value"))
def update_output(d):
prefix = "You have selected: "
if d:
return prefix + d
else:
raise PreventUpdate
if __name__ == "__main__":
app.run_server(debug=True)
Sponsors
Thanks to the following people for supporting my efforts on dash-mantine-components.
Contributing
-
Join our Discord community.
-
Install virtual environment:
python -m venv venv source venv/bin/activate pip install -r requirements.txt
-
Install npm dependencies
npm install
-
Add your new component in
src/lib/components
. Make sure to include it in thesrc/lib/index.js
as well. -
Build the components with the command:
npm run build
. -
Raise a PR, including an example to reproduce the changes contributed by the PR.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for dongjak_dash_components-0.14.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c46828a8ac26cc6ee52152b8c322fe42c286624d1062dd7ca3ccb7f228cae25 |
|
MD5 | 7872c7ca444d09f8e2d061b37095e938 |
|
BLAKE2b-256 | 03d08160f5addfb8b9114851e2315af879064effec3ac42eb2bdb3cc4d247275 |