@movable/ui 3.8.2 → 3.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.
@@ -54,6 +54,18 @@ declare const alert: {
54
54
  };
55
55
  };
56
56
  };
57
+ highlight: ({ theme }: {
58
+ theme: Theme;
59
+ ownerState: AlertProps;
60
+ }) => {
61
+ background: string;
62
+ borderRadius: number;
63
+ color: string;
64
+ '& .MuiAlert-message': {
65
+ color: string;
66
+ size: string;
67
+ };
68
+ };
57
69
  };
58
70
  };
59
71
  };
package/lib/theme.d.ts CHANGED
@@ -231,6 +231,7 @@ declare module '@mui/material/Alert' {
231
231
  interface AlertPropsVariantOverrides {
232
232
  snackbar: true;
233
233
  standard: true;
234
+ highlight: true;
234
235
  filled: false;
235
236
  outlined: false;
236
237
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@movable/ui",
3
- "version": "3.8.2",
3
+ "version": "3.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",