@m4l/styles 1.0.3 → 1.0.5
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 +2 -2
- package/package.json +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LCheckBox.d.ts +4 -1
- package/theme/overrides/M4LExtendedComponents/M4LDataGrid.d.ts +6 -1
- package/theme/overrides/M4LExtendedComponents/{index.115d7d26.js → index.72985442.js} +9 -1
- package/theme/overrides/{index.528e0e14.js → index.e233df5d.js} +1 -1
package/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import { d as f } from "./theme/defaultThemeOptions.d580f3ec.js";
|
|
|
2
2
|
import { c as R, s as S } from "./theme/shadows.e0c009ff.js";
|
|
3
3
|
import { C, E as l, G as g, I as n, O as u, P, a as T, b as d, S as A, c as E, W as N, p as b } from "./theme/palette.287635f2.js";
|
|
4
4
|
import { t as I } from "./theme/typography.947dc33f.js";
|
|
5
|
-
import { f as F } from "./theme/overrides/index.
|
|
5
|
+
import { f as F } from "./theme/overrides/index.e233df5d.js";
|
|
6
6
|
import { u as v } from "./utils/useResponsive.2c45e8e0.js";
|
|
7
7
|
import { e as z, b as G, c as L, d as M, g as U, a as y, t as D } from "./utils/getColorPresets.a96a4046.js";
|
|
8
8
|
import { g as W } from "./utils/getColorState.18b61422.js";
|
|
@@ -14,7 +14,7 @@ import "@mui/system";
|
|
|
14
14
|
import "@mui/material";
|
|
15
15
|
import "./theme/overrides/MUIComponents/index.5c43e3b5.js";
|
|
16
16
|
import "./theme/overrides/M4LRHFComponents/index.3599b255.js";
|
|
17
|
-
import "./theme/overrides/M4LExtendedComponents/index.
|
|
17
|
+
import "./theme/overrides/M4LExtendedComponents/index.72985442.js";
|
|
18
18
|
export {
|
|
19
19
|
C as COMMON,
|
|
20
20
|
l as ERROR,
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Theme, CssVarsTheme } from '@mui/material/styles';
|
|
2
|
-
export declare const M4LCheckBox: (theme: Omit<Theme,
|
|
2
|
+
export declare const M4LCheckBox: (theme: Omit<Theme, 'palette' | 'applyStyles'> & CssVarsTheme) => {
|
|
3
3
|
M4LCheckBox: {
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
'&.M4LCheckBox-root': {
|
|
@@ -42,6 +42,9 @@ export declare const M4LCheckBox: (theme: Omit<Theme, "palette" | "applyStyles">
|
|
|
42
42
|
};
|
|
43
43
|
'& .MuiButtonBase-root': {
|
|
44
44
|
borderRadius: string;
|
|
45
|
+
'& .MuiSvgIcon-root': {
|
|
46
|
+
fill: string;
|
|
47
|
+
};
|
|
45
48
|
};
|
|
46
49
|
'& .MuiButtonBase-root:hover': {
|
|
47
50
|
backgroundColor: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Theme, CssVarsTheme } from '@mui/material/styles';
|
|
2
|
-
export declare const M4LDataGrid: (theme: Omit<Theme,
|
|
2
|
+
export declare const M4LDataGrid: (theme: Omit<Theme, 'palette' | 'applyStyles'> & CssVarsTheme) => {
|
|
3
3
|
M4LDataGrid: {
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
'&.M4LDataGrid-root': {
|
|
@@ -14,6 +14,11 @@ export declare const M4LDataGrid: (theme: Omit<Theme, "palette" | "applyStyles">
|
|
|
14
14
|
gap: string;
|
|
15
15
|
height: string;
|
|
16
16
|
width: string;
|
|
17
|
+
'& .rdg .MuiCheckbox-root': {
|
|
18
|
+
'& > svg': {
|
|
19
|
+
color: string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
17
22
|
"&.M4LDataGrid-xs": {
|
|
18
23
|
'& .M4LDataGrid-actions': {
|
|
19
24
|
height: string;
|
|
@@ -4868,6 +4868,11 @@ const c = (o) => ({
|
|
|
4868
4868
|
gap: "4px",
|
|
4869
4869
|
height: "100%",
|
|
4870
4870
|
width: "100%",
|
|
4871
|
+
"& .rdg .MuiCheckbox-root": {
|
|
4872
|
+
"& > svg": {
|
|
4873
|
+
color: o.vars.palette.text.secondary
|
|
4874
|
+
}
|
|
4875
|
+
},
|
|
4871
4876
|
["&.M4LDataGrid-xs"]: {
|
|
4872
4877
|
"& .M4LDataGrid-actions": {
|
|
4873
4878
|
height: "44px",
|
|
@@ -5345,7 +5350,10 @@ const c = (o) => ({
|
|
|
5345
5350
|
height: "20px"
|
|
5346
5351
|
},
|
|
5347
5352
|
"& .MuiButtonBase-root": {
|
|
5348
|
-
borderRadius: "4px"
|
|
5353
|
+
borderRadius: "4px",
|
|
5354
|
+
"& .MuiSvgIcon-root": {
|
|
5355
|
+
fill: o.vars.palette.text.secondary
|
|
5356
|
+
}
|
|
5349
5357
|
},
|
|
5350
5358
|
"& .MuiButtonBase-root:hover": {
|
|
5351
5359
|
backgroundColor: o.vars.palette.state?.active12,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { F as s, C as o, M as r, L, I as M, a as n, R as i, B as p, b as c, T as l, P as d, S as u, c as g, d as B, A as F, e as P, D as A, f as T, g as b, h as C, i as S, j as y, k as I, l as R, m as v, n as H, o as k, p as D, q as f, r as x, s as w, t as G, u as V, v as j, w as E, x as N, y as O, z as q } from "./MUIComponents/index.5c43e3b5.js";
|
|
2
2
|
import { M as z, a as U, b as J, c as K, d as Q, e as W, f as X, g as Y, h as Z } from "./M4LRHFComponents/index.3599b255.js";
|
|
3
|
-
import { M as _, a as $, b as t, c as m, d as e, e as h, f as aa, g as sa, h as oa, i as ra, j as La, k as Ma, l as na, m as ia, n as pa, o as ca, p as la, q as da, r as ua, s as ga, t as Ba, u as Fa, v as Pa, w as Aa, x as Ta, y as ba, z as Ca, A as Sa, B as ya, C as Ia, D as Ra, E as va, F as Ha, G as ka, H as Da, I as fa, J as xa, K as wa, L as Ga, N as Va, O as ja, P as Ea, Q as Na, R as Oa, S as qa, T as za, U as Ua, V as Ja, W as Ka, X as Qa, Y as Wa, Z as Xa } from "./M4LExtendedComponents/index.
|
|
3
|
+
import { M as _, a as $, b as t, c as m, d as e, e as h, f as aa, g as sa, h as oa, i as ra, j as La, k as Ma, l as na, m as ia, n as pa, o as ca, p as la, q as da, r as ua, s as ga, t as Ba, u as Fa, v as Pa, w as Aa, x as Ta, y as ba, z as Ca, A as Sa, B as ya, C as Ia, D as Ra, E as va, F as Ha, G as ka, H as Da, I as fa, J as xa, K as wa, L as Ga, N as Va, O as ja, P as Ea, Q as Na, R as Oa, S as qa, T as za, U as Ua, V as Ja, W as Ka, X as Qa, Y as Wa, Z as Xa } from "./M4LExtendedComponents/index.72985442.js";
|
|
4
4
|
function $a(a) {
|
|
5
5
|
return Object.assign(
|
|
6
6
|
s(a),
|