@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/index.mjs +563 -507
- package/lib/index.mjs.map +1 -1
- package/lib/palette.d.ts +1 -0
- package/lib/theme.d.ts +5 -0
- package/package.json +1 -1
package/lib/palette.d.ts
CHANGED
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;
|