dash_mantine_components 0.14.4 → 0.14.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -28
- package/dash_mantine_components/dash_mantine_components.js +1 -1
- package/package.json +15 -13
- package/dash_mantine_components/metadata.json +0 -176418
package/README.md
CHANGED
|
@@ -14,18 +14,11 @@
|
|
|
14
14
|
|
|
15
15
|
Dash Mantine Components is an extensive (90+) Dash components library based on [Mantine](https://mantine.dev/) React Components Library. It makes it easier to create good quality dashboards with very well designed components out of the box.
|
|
16
16
|
|
|
17
|
-
[Documentation](https://dash-mantine-components.com)
|
|
18
17
|
|
|
19
18
|
<p align="center">
|
|
20
19
|
<img src="https://raw.githubusercontent.com/snehilvj/dash-mantine-components/master/assets/datepicker.gif">
|
|
21
20
|
</p>
|
|
22
21
|
|
|
23
|
-
### Table of contents
|
|
24
|
-
|
|
25
|
-
- [Installation](#installation)
|
|
26
|
-
- [Quickstart](#quickstart)
|
|
27
|
-
- [Sponsors](#sponsors)
|
|
28
|
-
- [Contributing](#contributing)
|
|
29
22
|
|
|
30
23
|
## Installation
|
|
31
24
|
|
|
@@ -44,10 +37,9 @@ from dash.exceptions import PreventUpdate
|
|
|
44
37
|
|
|
45
38
|
import dash_mantine_components as dmc
|
|
46
39
|
|
|
47
|
-
stylesheets = ["https://unpkg.com/@mantine/dates@7/styles.css"]
|
|
48
40
|
dash._dash_renderer._set_react_version('18.2.0')
|
|
49
41
|
|
|
50
|
-
app = Dash(__name__, external_stylesheets=
|
|
42
|
+
app = Dash(__name__, external_stylesheets=dmc.styles.ALL)
|
|
51
43
|
|
|
52
44
|
app.layout = dmc.MantineProvider(
|
|
53
45
|
[
|
|
@@ -78,33 +70,33 @@ if __name__ == "__main__":
|
|
|
78
70
|
app.run_server(debug=True)
|
|
79
71
|
```
|
|
80
72
|
|
|
81
|
-
##
|
|
73
|
+
## 📚 Documentation
|
|
74
|
+
|
|
75
|
+
For detailed information on how to use this project, check out the [Documentation](https://dash-mantine-components.com). You'll find guides, API references, and examples to help you get started!
|
|
76
|
+
|
|
77
|
+
## 🛠️ Contributing
|
|
82
78
|
|
|
83
|
-
|
|
79
|
+
We welcome all contributions! Feel free to open issues for any bugs or feature requests, and don't hesitate to
|
|
80
|
+
comment on existing issues or pull requests. PRs are encouraged! For more details, please check out our [Contributing Guide.](https://github.com/snehilvj/dash-mantine-components/blob/master/CONTRIBUTING.md)
|
|
84
81
|
|
|
85
|
-
|
|
86
|
-
|
|
82
|
+
Join our [Discord](https://discord.gg/KuJkh4Pyq5) to connect with other contributors, or visit the [Plotly Dash Community Forum](https://community.plotly.com/)
|
|
83
|
+
for discussions and support.
|
|
87
84
|
|
|
88
|
-
## Contributing
|
|
89
85
|
|
|
90
|
-
|
|
86
|
+
## 📝 Contributing to the Docs
|
|
91
87
|
|
|
92
|
-
|
|
88
|
+
We :heart: contributions to our documentation! It's a fantastic opportunity for first-time contributors since the
|
|
89
|
+
project is simply a Dash app built with `dash-mantine-components`. For more details, check out the [dmc-docs GitHub.](https://github.com/snehilvj/dmc-docs)
|
|
93
90
|
|
|
94
|
-
```bash
|
|
95
|
-
python -m venv venv
|
|
96
|
-
source venv/bin/activate
|
|
97
|
-
pip install -r requirements.txt
|
|
98
|
-
```
|
|
99
91
|
|
|
100
|
-
|
|
92
|
+
## 💖 Sponsors
|
|
101
93
|
|
|
102
|
-
|
|
103
|
-
npm install
|
|
104
|
-
```
|
|
94
|
+
A huge thank you to our current sponsors for supporting this project! 🙏 Your contributions help drive development and improvements.
|
|
105
95
|
|
|
106
|
-
|
|
96
|
+
If you’d like to support this project and help ensure its continued success, consider [becoming a sponsor](https://github.com/sponsors/snehilvj). Your support
|
|
97
|
+
is greatly appreciated and helps keep the project growing and thriving!
|
|
107
98
|
|
|
108
|
-
5. Build the components with the command: `npm run build`.
|
|
109
99
|
|
|
110
|
-
|
|
100
|
+
## ⭐️ Support by Starring the Project
|
|
101
|
+
If you find this project helpful, consider giving it a star on GitHub! ⭐️ It helps others discover the project and
|
|
102
|
+
motivates us to keep improving it. Your support is greatly appreciated!
|