@m4l/components 9.3.35-BE20251129-beta.1 → 9.3.35-BE20251129-beta.2
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/components/DataGrid/Datagrid.styles.js +8 -1
- package/components/LanguagePopover/LanguagePopover.styles.js +13 -4
- package/components/areas/components/AreasAdmin/subcomponents/AreaChipMobile/subcomponents/ChipMobile/ChipMobile.js +5 -0
- package/components/mui_extended/Popover/Popover.styles.js +6 -1
- package/package.json +3 -3
|
@@ -317,7 +317,14 @@ const dataGridStyles = {
|
|
|
317
317
|
},
|
|
318
318
|
'& [role="columnheader"]': {
|
|
319
319
|
paddingTop: theme.vars.size.baseSpacings.sp2,
|
|
320
|
-
paddingBottom: theme.vars.size.baseSpacings.sp2
|
|
320
|
+
paddingBottom: theme.vars.size.baseSpacings.sp2,
|
|
321
|
+
"& .MuiInputBase-input": {
|
|
322
|
+
...getTypographyStyles(
|
|
323
|
+
theme.generalSettings.isMobile,
|
|
324
|
+
ownerState?.size || "medium",
|
|
325
|
+
"body"
|
|
326
|
+
)
|
|
327
|
+
}
|
|
321
328
|
},
|
|
322
329
|
'& [role="grid"]': {
|
|
323
330
|
'& [aria-rowindex="1"].rdg-row .rdg-cell:last-child': {
|
|
@@ -35,10 +35,19 @@ const languagePopoverStyles = {
|
|
|
35
35
|
* Estilos del paper
|
|
36
36
|
*/
|
|
37
37
|
paper: ({ theme }) => ({
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
38
|
+
"&&&": {
|
|
39
|
+
position: "absolute",
|
|
40
|
+
marginTop: theme.vars.size.baseSpacings.sp1,
|
|
41
|
+
backgroundColor: theme.vars.palette.background.default,
|
|
42
|
+
borderRadius: theme.vars.size.borderRadius.r2,
|
|
43
|
+
boxShadow: theme.vars.customShadows.z4,
|
|
44
|
+
padding: theme.vars.size.baseSpacings.sp3,
|
|
45
|
+
"& .MuiList-root": {
|
|
46
|
+
padding: "unset"
|
|
47
|
+
},
|
|
48
|
+
"& .MuiTypography-root": {
|
|
49
|
+
cursor: "pointer"
|
|
50
|
+
}
|
|
42
51
|
}
|
|
43
52
|
})
|
|
44
53
|
};
|
|
@@ -5,8 +5,13 @@ const popoverStyles = {
|
|
|
5
5
|
root: ({ theme }) => ({
|
|
6
6
|
"&.M4lclassCssSpecificity": {
|
|
7
7
|
"& .MuiPaper-root": {
|
|
8
|
+
backgroundColor: theme.vars.palette.background.default,
|
|
8
9
|
boxShadow: theme.vars.customShadows.z4,
|
|
9
|
-
borderRadius: theme.vars.size.borderRadius.
|
|
10
|
+
borderRadius: theme.vars.size.borderRadius.r2,
|
|
11
|
+
padding: theme.vars.size.baseSpacings.sp3,
|
|
12
|
+
"& .MuiList-root": {
|
|
13
|
+
padding: "unset"
|
|
14
|
+
}
|
|
10
15
|
}
|
|
11
16
|
}
|
|
12
17
|
})
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m4l/components",
|
|
3
|
-
"version": "9.3.35-BE20251129-beta.
|
|
3
|
+
"version": "9.3.35-BE20251129-beta.2",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"description": "M4L Components",
|
|
6
6
|
"lint-staged": {
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"@googlemaps/js-api-loader": "^1.16.6",
|
|
12
12
|
"@hookform/resolvers": "2.9.11",
|
|
13
13
|
"@m4l/core": "^2.0.0",
|
|
14
|
-
"@m4l/graphics": "7.2.1-BE20251129-beta.
|
|
15
|
-
"@m4l/styles": "7.1.36-BE20251129-beta.
|
|
14
|
+
"@m4l/graphics": "7.2.1-BE20251129-beta.2",
|
|
15
|
+
"@m4l/styles": "7.1.36-BE20251129-beta.2",
|
|
16
16
|
"@mui/lab": "5.0.0-alpha.173",
|
|
17
17
|
"@mui/material": "5.16.7",
|
|
18
18
|
"@mui/x-date-pickers": "6.20.2",
|