dash_mantine_components 0.11.0 → 0.11.1

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.
@@ -39763,6 +39763,38 @@
39763
39763
  "raw": "\"show\" | \"update\" | \"hide\""
39764
39764
  }
39765
39765
  },
39766
+ "className": {
39767
+ "description": "Often used with CSS to style elements with common properties",
39768
+ "required": false,
39769
+ "type": {
39770
+ "name": "string",
39771
+ "raw": "string"
39772
+ }
39773
+ },
39774
+ "style": {
39775
+ "description": "Inline style",
39776
+ "required": false,
39777
+ "type": {
39778
+ "name": "any",
39779
+ "raw": "any"
39780
+ }
39781
+ },
39782
+ "styles": {
39783
+ "description": "Mantine styles API",
39784
+ "required": false,
39785
+ "type": {
39786
+ "name": "object",
39787
+ "raw": "object"
39788
+ }
39789
+ },
39790
+ "unstyled": {
39791
+ "description": "Remove all Mantine styling from the component",
39792
+ "required": false,
39793
+ "type": {
39794
+ "name": "bool",
39795
+ "raw": "boolean"
39796
+ }
39797
+ },
39766
39798
  "setProps": {
39767
39799
  "description": "Update props to trigger callbacks.",
39768
39800
  "required": true,
@@ -39770,6 +39802,14 @@
39770
39802
  "name": "func",
39771
39803
  "raw": "(props: Record<string, any>) => void"
39772
39804
  }
39805
+ },
39806
+ "sx": {
39807
+ "description": "With sx you can add styles to component root element. If you need to customize styles of other elements within component use styles prop",
39808
+ "required": false,
39809
+ "type": {
39810
+ "name": "any",
39811
+ "raw": "any"
39812
+ }
39773
39813
  }
39774
39814
  },
39775
39815
  "isContext": false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dash_mantine_components",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "description": "Plotly Dash Components based on Mantine",
5
5
  "main": "index.ts",
6
6
  "repository": {
@@ -45,8 +45,8 @@
45
45
  "@mantine/dates": "^5.4.0",
46
46
  "@mantine/hooks": "^5.4.0",
47
47
  "@mantine/notifications": "^5.4.0",
48
- "@mantine/nprogress": "^5.1.5",
49
48
  "@mantine/prism": "^5.4.0",
49
+ "dash-extensions-js": "^0.0.8",
50
50
  "dayjs": "^1.11.5",
51
51
  "is-absolute-url": "^4.0.1"
52
52
  },