@campxdev/react-blueprint 0.1.16 → 0.1.17

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@campxdev/react-blueprint",
3
- "version": "0.1.16",
3
+ "version": "0.1.17",
4
4
  "main": "./export.ts",
5
5
  "private": false,
6
6
  "dependencies": {
@@ -111,7 +111,6 @@ export const getCommonTheme = (mode: Theme) => {
111
111
  },
112
112
  },
113
113
  MuiButton: {
114
- defaultProps: {},
115
114
  styleOverrides: {
116
115
  root: {
117
116
  textTransform: "none",
package/types/theme.d.ts CHANGED
@@ -24,6 +24,9 @@ declare module "@mui/material/styles" {
24
24
  highlight: {
25
25
  main: string;
26
26
  };
27
+ grey: {
28
+ main: string,
29
+ }
27
30
  };
28
31
  }
29
32
  export function createTheme(options?: CustomThemeOptions): CustomTheme;