@monolith-forensics/monolith-ui 1.1.13 → 1.1.15

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.
@@ -18,6 +18,7 @@ const MuiProvider = ({ children, theme = {}, defaultColorScheme = "dark", }) =>
18
18
  const defaultTheme = (0, theme_1.default)(colorScheme);
19
19
  // override default theme with the provided theme
20
20
  const _theme = (0, deepmerge_1.default)(defaultTheme, theme);
21
+ console.log(_theme);
21
22
  return ((0, jsx_runtime_1.jsx)(exports.MuiContext.Provider, { value: {
22
23
  theme: _theme,
23
24
  colorScheme,
@@ -50,6 +50,10 @@ declare const getTheme: (scheme: "light" | "dark") => {
50
50
  main: string;
51
51
  contrastText: string;
52
52
  };
53
+ error: {
54
+ main: string;
55
+ contrastText: string;
56
+ };
53
57
  secondary: {
54
58
  main: string;
55
59
  contrastText: string;
@@ -54,6 +54,10 @@ declare const variants: {
54
54
  main: string;
55
55
  contrastText: string;
56
56
  };
57
+ error: {
58
+ main: string;
59
+ contrastText: string;
60
+ };
57
61
  secondary: {
58
62
  main: string;
59
63
  contrastText: string;
@@ -56,6 +56,10 @@ const lightVariant = {
56
56
  main: customBlue[700],
57
57
  contrastText: "#FFF",
58
58
  },
59
+ error: {
60
+ main: "#f44336",
61
+ contrastText: "#FFF",
62
+ },
59
63
  secondary: {
60
64
  main: "#FFF",
61
65
  contrastText: "#000",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monolith-forensics/monolith-ui",
3
- "version": "1.1.13",
3
+ "version": "1.1.15",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "author": "Matt Danner (Monolith Forensics LLC)",