@m4l/styles 1.0.4 → 1.0.6
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/M4LDataGrid.d.ts +6 -1
- package/theme/overrides/M4LExtendedComponents/M4LSideBar.d.ts +3 -1
- package/theme/overrides/M4LExtendedComponents/{index.c0f327f3.js → index.ba1cc72c.js} +6 -0
- package/theme/overrides/{index.2f9f9e2c.js → index.34ab62d3.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.34ab62d3.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.ba1cc72c.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 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;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Theme, CssVarsTheme } from '@mui/material/styles';
|
|
2
|
-
export declare const M4LSideBar: (theme: Omit<Theme,
|
|
2
|
+
export declare const M4LSideBar: (theme: Omit<Theme, 'palette' | 'applyStyles'> & CssVarsTheme) => {
|
|
3
3
|
M4LSideBar: {
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
'&.M4LSideBar-root': {
|
|
@@ -347,6 +347,7 @@ export declare const M4LSideBar: (theme: Omit<Theme, "palette" | "applyStyles">
|
|
|
347
347
|
'&.M4LSideBar-itemMainActive': {
|
|
348
348
|
borderRadius: string;
|
|
349
349
|
height: string;
|
|
350
|
+
overflow: string;
|
|
350
351
|
'& .M4LSideBar-navItemMainRoot': {
|
|
351
352
|
background: string;
|
|
352
353
|
border: string;
|
|
@@ -694,6 +695,7 @@ export declare const M4LSideBar: (theme: Omit<Theme, "palette" | "applyStyles">
|
|
|
694
695
|
'&.M4LSideBar-itemMainActive': {
|
|
695
696
|
borderRadius: string;
|
|
696
697
|
height: string;
|
|
698
|
+
overflow: string;
|
|
697
699
|
'& .M4LSideBar-navItemMainRoot': {
|
|
698
700
|
background: string;
|
|
699
701
|
border: string;
|
|
@@ -884,6 +884,7 @@ const c = (o) => ({
|
|
|
884
884
|
"&.M4LSideBar-itemMainActive": {
|
|
885
885
|
borderRadius: "4px",
|
|
886
886
|
height: "auto",
|
|
887
|
+
overflow: "hidden",
|
|
887
888
|
"& .M4LSideBar-navItemMainRoot": {
|
|
888
889
|
background: o.vars.palette.state.active12,
|
|
889
890
|
border: "1px solid",
|
|
@@ -4868,6 +4869,11 @@ const c = (o) => ({
|
|
|
4868
4869
|
gap: "4px",
|
|
4869
4870
|
height: "100%",
|
|
4870
4871
|
width: "100%",
|
|
4872
|
+
"& .rdg .MuiCheckbox-root": {
|
|
4873
|
+
"& > svg": {
|
|
4874
|
+
color: o.vars.palette.text.secondary
|
|
4875
|
+
}
|
|
4876
|
+
},
|
|
4871
4877
|
["&.M4LDataGrid-xs"]: {
|
|
4872
4878
|
"& .M4LDataGrid-actions": {
|
|
4873
4879
|
height: "44px",
|
|
@@ -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.ba1cc72c.js";
|
|
4
4
|
function $a(a) {
|
|
5
5
|
return Object.assign(
|
|
6
6
|
s(a),
|