@movable/ui 0.7.0 → 0.9.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 +708 -650
- package/lib/index.mjs.map +1 -1
- package/lib/palette.d.ts +7 -0
- package/lib/theme.d.ts +11 -0
- package/package.json +1 -1
package/lib/palette.d.ts
CHANGED
|
@@ -166,6 +166,7 @@ declare const palette: {
|
|
|
166
166
|
deepPurpleA200: "#7c4dff";
|
|
167
167
|
deepPurpleA400: "#651fff";
|
|
168
168
|
deepPurpleA700: "#6200ea";
|
|
169
|
+
deepPurpleA800: string;
|
|
169
170
|
primary: {
|
|
170
171
|
main: "#2962ff";
|
|
171
172
|
dark: string;
|
|
@@ -193,6 +194,7 @@ declare const palette: {
|
|
|
193
194
|
dark: "#c62828";
|
|
194
195
|
light: "#ff5252";
|
|
195
196
|
contrastText: string;
|
|
197
|
+
hover: string;
|
|
196
198
|
};
|
|
197
199
|
warning: {
|
|
198
200
|
main: "#f57f17";
|
|
@@ -206,6 +208,11 @@ declare const palette: {
|
|
|
206
208
|
light: "#00b0ff";
|
|
207
209
|
contrastText: string;
|
|
208
210
|
};
|
|
211
|
+
ai: {
|
|
212
|
+
main: "#6200ea";
|
|
213
|
+
dark: string;
|
|
214
|
+
contrastText: string;
|
|
215
|
+
};
|
|
209
216
|
success: {
|
|
210
217
|
main: string;
|
|
211
218
|
dark: "#388e3c";
|
package/lib/theme.d.ts
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
declare module '@mui/material/styles' {
|
|
2
|
+
interface Palette {
|
|
3
|
+
ai: Palette['primary'];
|
|
4
|
+
}
|
|
5
|
+
interface PaletteOptions {
|
|
6
|
+
ai?: PaletteOptions['primary'];
|
|
7
|
+
}
|
|
2
8
|
interface PaletteColor {
|
|
3
9
|
hover?: string;
|
|
4
10
|
selected?: string;
|
|
@@ -194,5 +200,10 @@ declare module '@mui/material/styles' {
|
|
|
194
200
|
blue500: string;
|
|
195
201
|
}
|
|
196
202
|
}
|
|
203
|
+
declare module '@mui/material/Button' {
|
|
204
|
+
interface ButtonPropsColorOverrides {
|
|
205
|
+
ai: true;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
197
208
|
declare const theme: import("@mui/material/styles").Theme;
|
|
198
209
|
export default theme;
|