@movable/ui 0.6.2 → 0.8.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 +249 -242
- package/lib/index.mjs.map +1 -1
- package/lib/palette.d.ts +6 -0
- package/lib/theme.d.ts +10 -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;
|
|
@@ -206,6 +207,11 @@ declare const palette: {
|
|
|
206
207
|
light: "#00b0ff";
|
|
207
208
|
contrastText: string;
|
|
208
209
|
};
|
|
210
|
+
ai: {
|
|
211
|
+
main: "#6200ea";
|
|
212
|
+
dark: string;
|
|
213
|
+
contrastText: string;
|
|
214
|
+
};
|
|
209
215
|
success: {
|
|
210
216
|
main: string;
|
|
211
217
|
dark: "#388e3c";
|
package/lib/theme.d.ts
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
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 {
|
|
9
|
+
hover?: string;
|
|
3
10
|
selected?: string;
|
|
11
|
+
focus?: string;
|
|
12
|
+
focusVisible?: string;
|
|
13
|
+
outlinedBorder?: string;
|
|
4
14
|
}
|
|
5
15
|
interface Palette {
|
|
6
16
|
focusVisible: string;
|