@movable/ui 0.8.0 → 0.10.0

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/lib/palette.d.ts CHANGED
@@ -194,6 +194,7 @@ declare const palette: {
194
194
  dark: "#c62828";
195
195
  light: "#ff5252";
196
196
  contrastText: string;
197
+ hover: string;
197
198
  };
198
199
  warning: {
199
200
  main: "#f57f17";
package/lib/theme.d.ts CHANGED
@@ -200,5 +200,10 @@ declare module '@mui/material/styles' {
200
200
  blue500: string;
201
201
  }
202
202
  }
203
+ declare module '@mui/material/Button' {
204
+ interface ButtonPropsColorOverrides {
205
+ ai: true;
206
+ }
207
+ }
203
208
  declare const theme: import("@mui/material/styles").Theme;
204
209
  export default theme;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@movable/ui",
3
- "version": "0.8.0",
3
+ "version": "0.10.0",
4
4
  "description": "Movable Ink's shared MUI components and MUI theme for our vite applications",
5
5
  "module": "lib/index.mjs",
6
6
  "types": "lib/index.d.ts",