@fixefy/fixefy-ui-utils 0.2.43 → 0.2.45
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.
|
@@ -7,9 +7,15 @@ declare module '@mui/styles/defaultTheme' {
|
|
|
7
7
|
declare module '@mui/material/styles' {
|
|
8
8
|
interface Theme {
|
|
9
9
|
sizes: Sizes;
|
|
10
|
+
sidebar: {
|
|
11
|
+
width: number;
|
|
12
|
+
};
|
|
10
13
|
}
|
|
11
14
|
interface ThemeOptions {
|
|
12
15
|
sizes: Sizes;
|
|
16
|
+
sidebar: {
|
|
17
|
+
width: number;
|
|
18
|
+
};
|
|
13
19
|
}
|
|
14
20
|
interface Sizes {
|
|
15
21
|
sideMenu: {
|
|
@@ -364,8 +364,8 @@ const theme = (0, _styles.createTheme)({
|
|
|
364
364
|
background: '#EC6AC8'
|
|
365
365
|
},
|
|
366
366
|
in_progress: {
|
|
367
|
-
border: '#
|
|
368
|
-
background: '#
|
|
367
|
+
border: '#56CCF2',
|
|
368
|
+
background: '#56CCF2'
|
|
369
369
|
},
|
|
370
370
|
paid: {
|
|
371
371
|
border: '#BB6BD9',
|
|
@@ -467,7 +467,7 @@ const theme = (0, _styles.createTheme)({
|
|
|
467
467
|
in_progress: {
|
|
468
468
|
border: '#EB5757',
|
|
469
469
|
background: '#EB5757',
|
|
470
|
-
light: '#
|
|
470
|
+
light: '#FEF6F6'
|
|
471
471
|
},
|
|
472
472
|
pending: {
|
|
473
473
|
border: '#ECC631',
|
|
@@ -849,6 +849,9 @@ const theme = (0, _styles.createTheme)({
|
|
|
849
849
|
letterSpacing: '0.1px'
|
|
850
850
|
}
|
|
851
851
|
},
|
|
852
|
+
sidebar: {
|
|
853
|
+
width: 200
|
|
854
|
+
},
|
|
852
855
|
sizes: {
|
|
853
856
|
sideMenu: {
|
|
854
857
|
width: 70,
|
package/package.json
CHANGED