dash_mantine_components 0.14.3 → 0.14.5

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 CHANGED
@@ -38,15 +38,15 @@ pip install dash-mantine-components
38
38
  ```python
39
39
  from datetime import date
40
40
 
41
+ import dash
41
42
  from dash import Dash, Input, Output, callback, html
42
43
  from dash.exceptions import PreventUpdate
43
44
 
44
45
  import dash_mantine_components as dmc
45
46
 
46
- stylesheets = ["https://unpkg.com/@mantine/dates@7/styles.css"]
47
47
  dash._dash_renderer._set_react_version('18.2.0')
48
48
 
49
- app = Dash(__name__, external_stylesheets=stylesheets)
49
+ app = Dash(__name__, external_stylesheets=dmc.styles.ALL)
50
50
 
51
51
  app.layout = dmc.MantineProvider(
52
52
  [
@@ -107,3 +107,10 @@ Thanks to the following people for supporting my efforts on dash-mantine-compone
107
107
  5. Build the components with the command: `npm run build`.
108
108
 
109
109
  6. Raise a PR, including an example to reproduce the changes contributed by the PR.
110
+
111
+ 7. Unless you have changed dependencies, please do not include `package-lock.json` or `yarn.lock` files.
112
+
113
+ ## Contributing to the Docs
114
+
115
+ We :heart: contributions to our documentation! It's a fantastic opportunity for first-time contributors since the
116
+ 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)