@up42/up-components 1.4.0-dark-mode.0 → 1.4.0-dark-mode.1

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.
@@ -1,2 +1,39 @@
1
+ import { Palette as MuiPalette, PaletteOptions as MuiPaletteOptions } from '@mui/material/styles/createPalette';
1
2
  export { darkTheme } from './darkTheme';
2
3
  export { lightTheme } from './lightTheme';
4
+ declare module '@mui/material/styles/createPalette' {
5
+ interface Palette extends MuiPalette {
6
+ primaryHover: string;
7
+ primaryActive: string;
8
+ secondaryHover: string;
9
+ secondaryActive: string;
10
+ neutralHover: string;
11
+ neutralActive: string;
12
+ disabled: string;
13
+ successHover: string;
14
+ successActive: string;
15
+ criticalHover: string;
16
+ criticalActive: string;
17
+ warningHover: string;
18
+ warningActive: string;
19
+ infoHover: string;
20
+ infoActive: string;
21
+ }
22
+ interface PaletteOptions extends MuiPaletteOptions {
23
+ primaryHover: string;
24
+ primaryActive: string;
25
+ secondaryHover: string;
26
+ secondaryActive: string;
27
+ neutralHover: string;
28
+ neutralActive: string;
29
+ disabled: string;
30
+ successHover: string;
31
+ successActive: string;
32
+ criticalHover: string;
33
+ criticalActive: string;
34
+ warningHover: string;
35
+ warningActive: string;
36
+ infoHover: string;
37
+ infoActive: string;
38
+ }
39
+ }