@m4l/styles 0.0.11 → 0.0.13
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/index.js +479 -662
- package/package.json +1 -1
- package/theme/overrides/M4LExtendedComponents/DynamicFilter.d.ts +136 -0
- package/theme/overrides/M4LExtendedComponents/M4LAreasAdmin.d.ts +20 -0
- package/theme/overrides/M4LExtendedComponents/M4LAreasViewer.d.ts +10 -0
- package/theme/overrides/M4LExtendedComponents/M4LIcon.d.ts +10 -0
- package/theme/overrides/M4LExtendedComponents/M4LPopover.d.ts +16 -33
- package/theme/overrides/M4LExtendedComponents/M4LSideBar.d.ts +373 -1015
- package/theme/overrides/M4LRHFComponents/M4LRHFAutocompleteAsync.d.ts +1 -0
- package/theme/overrides/M4LRHFComponents/M4LRHFTextField.d.ts +1 -0
- package/theme/overrides/MUIComponents/Drawer.d.ts +0 -1068
- package/theme/overrides/MUIComponents/Input.d.ts +1 -1
- package/theme/overrides/MUIComponents/Popover.d.ts +2 -5
- package/theme/typography.d.ts +6 -6
- package/types/augmentations.d.ts +1 -1
- package/theme/overrides/MUIComponents/DynamicFilter.d.ts +0 -6
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
import { Theme } from '@mui/material/styles';
|
|
2
|
-
export default function Popover(
|
|
2
|
+
export default function Popover(_theme: Theme): {
|
|
3
3
|
MuiPopover: {
|
|
4
4
|
styleOverrides: {
|
|
5
|
-
paper: {
|
|
6
|
-
boxShadow: string;
|
|
7
|
-
borderRadius: number;
|
|
8
|
-
};
|
|
5
|
+
paper: {};
|
|
9
6
|
};
|
|
10
7
|
};
|
|
11
8
|
};
|
package/theme/typography.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ export declare const typography: {
|
|
|
28
28
|
readonly '@media (min-width:1200px)': {
|
|
29
29
|
fontSize: string;
|
|
30
30
|
};
|
|
31
|
-
readonly fontWeight:
|
|
31
|
+
readonly fontWeight: 600;
|
|
32
32
|
readonly lineHeight: 1.5;
|
|
33
33
|
};
|
|
34
34
|
readonly h2: {
|
|
@@ -41,7 +41,7 @@ export declare const typography: {
|
|
|
41
41
|
readonly '@media (min-width:1200px)': {
|
|
42
42
|
fontSize: string;
|
|
43
43
|
};
|
|
44
|
-
readonly fontWeight:
|
|
44
|
+
readonly fontWeight: 600;
|
|
45
45
|
readonly lineHeight: 1;
|
|
46
46
|
};
|
|
47
47
|
readonly h3: {
|
|
@@ -67,7 +67,7 @@ export declare const typography: {
|
|
|
67
67
|
readonly '@media (min-width:1200px)': {
|
|
68
68
|
fontSize: string;
|
|
69
69
|
};
|
|
70
|
-
readonly fontWeight:
|
|
70
|
+
readonly fontWeight: 600;
|
|
71
71
|
readonly lineHeight: 1.5;
|
|
72
72
|
};
|
|
73
73
|
readonly h5: {
|
|
@@ -93,7 +93,7 @@ export declare const typography: {
|
|
|
93
93
|
readonly '@media (min-width:1200px)': {
|
|
94
94
|
fontSize: string;
|
|
95
95
|
};
|
|
96
|
-
readonly fontWeight:
|
|
96
|
+
readonly fontWeight: 600;
|
|
97
97
|
readonly lineHeight: number;
|
|
98
98
|
};
|
|
99
99
|
readonly subtitle: {
|
|
@@ -119,7 +119,7 @@ export declare const typography: {
|
|
|
119
119
|
readonly '@media (min-width:1200px)': {
|
|
120
120
|
fontSize: string;
|
|
121
121
|
};
|
|
122
|
-
readonly fontWeight:
|
|
122
|
+
readonly fontWeight: 600;
|
|
123
123
|
readonly lineHeight: 1.5;
|
|
124
124
|
};
|
|
125
125
|
readonly paragraph: {
|
|
@@ -181,7 +181,7 @@ export declare const typography: {
|
|
|
181
181
|
readonly '@media (min-width:1200px)': {
|
|
182
182
|
fontSize: string;
|
|
183
183
|
};
|
|
184
|
-
readonly fontWeight:
|
|
184
|
+
readonly fontWeight: 600;
|
|
185
185
|
readonly lineHeight: 1.143;
|
|
186
186
|
};
|
|
187
187
|
readonly body0: {
|
package/types/augmentations.d.ts
CHANGED
|
@@ -50,7 +50,7 @@ declare module '@mui/material/styles/createPalette' {
|
|
|
50
50
|
chart?: ChartPaletteOptions;
|
|
51
51
|
grid?: GridPaletteOptions;
|
|
52
52
|
patronus?: PatronusConstantColors;
|
|
53
|
-
state: ColorStateOptions
|
|
53
|
+
state: ColorStateOptions /* Organizar cada caso con los valores específicos. */;
|
|
54
54
|
representative: string;
|
|
55
55
|
}
|
|
56
56
|
}
|