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.
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
dash._dash_renderer._set_react_version('18.2.0')
app = Dash(__name__, external_stylesheets=dmc.styles.ALL)
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)
📚 Documentation
For detailed information on how to use this project, check out the Documentation. You'll find guides, API references, and examples to help you get started!
🛠️ Contributing
We welcome all contributions! Feel free to open issues for any bugs or feature requests, and don't hesitate to comment on existing issues or pull requests. PRs are encouraged! For more details, please check out our Contributing Guide.
Join our Discord to connect with other contributors, or visit the Plotly Dash Community Forum for discussions and support.
📝 Contributing to the Docs
We :heart: contributions to our documentation! It's a fantastic opportunity for first-time contributors since the
project is simply a Dash app built with dash-mantine-components
. For more details, check out the dmc-docs GitHub.
💖 Sponsors
A huge thank you to our current sponsors for supporting this project! 🙏 Your contributions help drive development and improvements.
If you’d like to support this project and help ensure its continued success, consider becoming a sponsor. Your support is greatly appreciated and helps keep the project growing and thriving!
⭐️ Support by Starring the Project
If you find this project helpful, consider giving it a star on GitHub! ⭐️ It helps others discover the project and motivates us to keep improving it. Your support is greatly appreciated!
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
Built Distribution
File details
Details for the file dash_mantine_components-0.15.0.tar.gz
.
File metadata
- Download URL: dash_mantine_components-0.15.0.tar.gz
- Upload date:
- Size: 911.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f7277c0eae63f046a0a06706ba9a8ce77af48b1fdf351c489eaee75655b9aa3 |
|
MD5 | 824432f1f4a5cd9124dde5ca8e723394 |
|
BLAKE2b-256 | 887e06fcec38ef8e1166b51b9ea276fe0ee4222bf4935ff1d2b9e140d3040637 |
File details
Details for the file dash_mantine_components-0.15.0-py3-none-any.whl
.
File metadata
- Download URL: dash_mantine_components-0.15.0-py3-none-any.whl
- Upload date:
- Size: 1.2 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 118c50f9c044d9337927d7ec17b5384ddca4b2ccd56a218d46db7a1f19d65ddd |
|
MD5 | f80e89392f8c89db96664c33d066cfeb |
|
BLAKE2b-256 | 7806c8254684bf607f67b20536e8783b0abbd5eb7db163dd8180f29837a27a7e |