@mx-cartographer/experiences 7.0.28-alpha.mega1 → 7.0.28

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,18 +1,111 @@
1
- import { PaletteColor, Theme } from '@mui/material';
1
+ import { Theme } from '@mui/material';
2
2
  import { ClientStyleProfile } from '../types';
3
3
  export declare const getClientTheme: (theme: Theme, clientStyleProfile: ClientStyleProfile) => {
4
4
  typography: {
5
- [k: string]: string | {
5
+ fontFamily: string | undefined;
6
+ H1: {
6
7
  fontFamily: string | undefined;
7
- } | undefined;
8
+ };
9
+ h1: {
10
+ fontFamily: string | undefined;
11
+ };
12
+ H2: {
13
+ fontFamily: string | undefined;
14
+ };
15
+ h2: {
16
+ fontFamily: string | undefined;
17
+ };
18
+ H3: {
19
+ fontFamily: string | undefined;
20
+ };
21
+ h3: {
22
+ fontFamily: string | undefined;
23
+ };
24
+ Body: {
25
+ fontFamily: string | undefined;
26
+ };
27
+ body1: {
28
+ fontFamily: string | undefined;
29
+ };
30
+ Small: {
31
+ fontFamily: string | undefined;
32
+ };
33
+ body2: {
34
+ fontFamily: string | undefined;
35
+ };
36
+ Button: {
37
+ fontFamily: string | undefined;
38
+ };
39
+ button: {
40
+ fontFamily: string | undefined;
41
+ };
42
+ XSmall: {
43
+ fontFamily: string | undefined;
44
+ };
45
+ caption: {
46
+ fontFamily: string | undefined;
47
+ };
48
+ Paragraph: {
49
+ fontFamily: string | undefined;
50
+ };
51
+ subtitle1: {
52
+ fontFamily: string | undefined;
53
+ };
54
+ ParagraphSmall: {
55
+ fontFamily: string | undefined;
56
+ };
57
+ subtitle2: {
58
+ fontFamily: string | undefined;
59
+ };
60
+ Tiny: {
61
+ fontFamily: string | undefined;
62
+ };
63
+ tiny: {
64
+ fontFamily: string | undefined;
65
+ };
8
66
  };
9
67
  palette: {
10
- [k: string]: PaletteColor | {
11
- lighter: string;
68
+ primary: {
69
+ lighter: string | undefined;
70
+ light: string;
71
+ main: string;
72
+ dark: string;
73
+ darker: string | undefined;
74
+ };
75
+ secondary: {
76
+ lighter: string | undefined;
77
+ light: string;
78
+ main: string;
79
+ dark: string;
80
+ darker: string | undefined;
81
+ };
82
+ error: {
83
+ lighter: string | undefined;
84
+ light: string;
85
+ main: string;
86
+ dark: string;
87
+ darker: string | undefined;
88
+ };
89
+ warning: {
90
+ lighter: string | undefined;
91
+ light: string;
92
+ main: string;
93
+ dark: string;
94
+ darker: string | undefined;
95
+ };
96
+ info: {
97
+ lighter: string | undefined;
98
+ light: string;
99
+ main: string;
100
+ dark: string;
101
+ darker: string | undefined;
102
+ };
103
+ success: {
104
+ lighter: string | undefined;
12
105
  light: string;
13
106
  main: string;
14
107
  dark: string;
15
- darker: string;
108
+ darker: string | undefined;
16
109
  };
17
110
  };
18
111
  components: {
@@ -34,24 +127,6 @@ export declare const getClientTheme: (theme: Theme, clientStyleProfile: ClientSt
34
127
  styleOverrides: {
35
128
  root: {
36
129
  borderRadius: string;
37
- textTransform: string;
38
- };
39
- };
40
- } | undefined;
41
- MuiIconButton?: {
42
- styleOverrides: {
43
- root: {
44
- borderRadius: string;
45
- minWidth: number;
46
- minHeight: number;
47
- };
48
- };
49
- } | undefined;
50
- MuiToggleButton?: {
51
- styleOverrides: {
52
- root: {
53
- borderRadius: string;
54
- textTransform: string;
55
130
  };
56
131
  };
57
132
  } | undefined;
@@ -73,4 +148,7 @@ export declare const getClientTheme: (theme: Theme, clientStyleProfile: ClientSt
73
148
  };
74
149
  };
75
150
  };
151
+ shape: {
152
+ borderRadius: number;
153
+ };
76
154
  };
@@ -1,6 +1,7 @@
1
1
  interface DebtDrawerProps {
2
2
  isOpen: boolean;
3
3
  onClose: () => void;
4
+ sx?: any;
4
5
  }
5
- declare const DebtDrawer: ({ isOpen, onClose }: DebtDrawerProps) => import("react/jsx-runtime").JSX.Element;
6
+ declare const DebtDrawer: ({ isOpen, onClose, sx }: DebtDrawerProps) => import("react/jsx-runtime").JSX.Element;
6
7
  export default DebtDrawer;
@@ -1,6 +1,7 @@
1
1
  interface PaydownDrawerProps {
2
2
  isOpen: boolean;
3
3
  onClose: () => void;
4
+ sx?: any;
4
5
  }
5
- declare const PaydownDrawer: ({ isOpen, onClose }: PaydownDrawerProps) => import("react/jsx-runtime").JSX.Element;
6
+ declare const PaydownDrawer: ({ isOpen, onClose, sx }: PaydownDrawerProps) => import("react/jsx-runtime").JSX.Element;
6
7
  export default PaydownDrawer;
@@ -1,8 +1,9 @@
1
1
  interface SnowballDrawerProps {
2
2
  isOpen: boolean;
3
3
  onClose: () => void;
4
+ sx?: any;
4
5
  }
5
- declare const _default: (({ isOpen, onClose }: SnowballDrawerProps) => import("react/jsx-runtime").JSX.Element) & {
6
+ declare const _default: (({ isOpen, onClose, sx }: SnowballDrawerProps) => import("react/jsx-runtime").JSX.Element) & {
6
7
  displayName: string;
7
8
  };
8
9
  export default _default;