@m4l/styles 0.0.24 → 0.0.25
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 +10 -10
- package/package.json +1 -1
- package/theme/{defaultThemeOptions.d50c50f1.js → defaultThemeOptions.ce206b4e.js} +5 -5
- package/theme/index.8bbc9635.js +7 -0
- package/theme/overrides/M4LExtendedComponents/M4LAccordion.d.ts +2 -4
- package/theme/overrides/M4LExtendedComponents/M4LAccountPopover.d.ts +12 -4
- package/theme/overrides/M4LExtendedComponents/M4LAppBar.d.ts +2 -4
- package/theme/overrides/M4LExtendedComponents/M4LAreasAdmin.d.ts +12728 -5576
- package/theme/overrides/M4LExtendedComponents/M4LAreasViewer.d.ts +19 -7
- package/theme/overrides/M4LExtendedComponents/M4LAvatar.d.ts +1 -4
- package/theme/overrides/M4LExtendedComponents/M4LBadge.d.ts +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LDataGrid.d.ts +0 -3
- package/theme/overrides/M4LExtendedComponents/M4LDynamicFilter.d.ts +113 -8
- package/theme/overrides/M4LExtendedComponents/M4LGridLayout.d.ts +10 -0
- package/theme/overrides/M4LExtendedComponents/M4LMasterDetailLayout.d.ts +2 -8
- package/theme/overrides/M4LExtendedComponents/M4LNoItemSelected.d.ts +22 -0
- package/theme/overrides/M4LExtendedComponents/M4LPager.d.ts +2 -3
- package/theme/overrides/M4LExtendedComponents/M4LPopover.d.ts +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LScrollBar.d.ts +17 -0
- package/theme/overrides/M4LExtendedComponents/M4LSideBar.d.ts +150 -43
- package/theme/overrides/M4LExtendedComponents/M4LSplitLayout.d.ts +31 -0
- package/theme/overrides/M4LExtendedComponents/M4LStack.d.ts +14 -0
- package/theme/overrides/M4LExtendedComponents/M4LTabs.d.ts +16 -0
- package/theme/overrides/M4LExtendedComponents/{index.83dad55c.js → index.a0dbf03e.js} +632 -391
- package/theme/overrides/M4LRHFComponents/M4LRHFAutocomplete.d.ts +2 -0
- package/theme/overrides/M4LRHFComponents/{index.0e107243.js → index.3df47466.js} +2 -0
- package/theme/overrides/MUIComponents/{index.1489876d.js → index.56b4e9b3.js} +9 -9
- package/theme/overrides/index.5c0e3013.js +98 -0
- package/theme/{palette.d06284f6.js → palette.b6e02e1c.js} +1 -1
- package/theme/{shadows.7ecb0e23.js → shadows.386e7ef4.js} +1 -1
- package/theme/{typography.b693a0c9.js → typography.248c39d2.js} +4 -4
- package/utils/{getColorPresets.826b8bc5.js → getColorPresets.241c5bac.js} +1 -1
- package/utils/{getColorState.c9741929.js → getColorState.2c0892d1.js} +18 -18
- package/theme/index.5e193e78.js +0 -7
- package/theme/overrides/index.03494fe3.js +0 -93
package/index.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { d as f } from "./theme/defaultThemeOptions.
|
|
2
|
-
import { c as l, s as g } from "./theme/shadows.
|
|
3
|
-
import { P as u, p as d } from "./theme/palette.
|
|
4
|
-
import { t as S } from "./theme/typography.
|
|
5
|
-
import { f as O } from "./theme/overrides/index.
|
|
1
|
+
import { d as f } from "./theme/defaultThemeOptions.ce206b4e.js";
|
|
2
|
+
import { c as l, s as g } from "./theme/shadows.386e7ef4.js";
|
|
3
|
+
import { P as u, p as d } from "./theme/palette.b6e02e1c.js";
|
|
4
|
+
import { t as S } from "./theme/typography.248c39d2.js";
|
|
5
|
+
import { f as O } from "./theme/overrides/index.5c0e3013.js";
|
|
6
6
|
import { u as b } from "./utils/useResponsive.2c45e8e0.js";
|
|
7
|
-
import { e as h, b as T, c as v, d as w, g as z, a as y, t as F } from "./utils/getColorPresets.
|
|
8
|
-
import { g as k } from "./utils/getColorState.
|
|
7
|
+
import { e as h, b as T, c as v, d as w, g as z, a as y, t as F } from "./utils/getColorPresets.241c5bac.js";
|
|
8
|
+
import { g as k } from "./utils/getColorState.2c0892d1.js";
|
|
9
9
|
import { g as A, p as B, a as L, r as N } from "./utils/getFontValue.88831637.js";
|
|
10
10
|
import { g as j, m as D } from "./config.5405b46b.js";
|
|
11
11
|
import "@mui/material/styles";
|
|
12
12
|
import "@mui/material/useMediaQuery";
|
|
13
13
|
import "@mui/system";
|
|
14
14
|
import "@mui/material";
|
|
15
|
-
import "./theme/overrides/MUIComponents/index.
|
|
16
|
-
import "./theme/overrides/M4LExtendedComponents/index.
|
|
17
|
-
import "./theme/overrides/M4LRHFComponents/index.
|
|
15
|
+
import "./theme/overrides/MUIComponents/index.56b4e9b3.js";
|
|
16
|
+
import "./theme/overrides/M4LExtendedComponents/index.a0dbf03e.js";
|
|
17
|
+
import "./theme/overrides/M4LRHFComponents/index.3df47466.js";
|
|
18
18
|
export {
|
|
19
19
|
u as PATRONUSCOLORS,
|
|
20
20
|
h as blaze,
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import "@mui/material/styles";
|
|
2
2
|
import "@mui/material/useMediaQuery";
|
|
3
|
-
import { g as t } from "../utils/getColorPresets.
|
|
3
|
+
import { g as t } from "../utils/getColorPresets.241c5bac.js";
|
|
4
4
|
import "@mui/system";
|
|
5
|
-
import { t as o } from "./typography.
|
|
6
|
-
import { p as a } from "./palette.
|
|
5
|
+
import { t as o } from "./typography.248c39d2.js";
|
|
6
|
+
import { p as a } from "./palette.b6e02e1c.js";
|
|
7
7
|
import { alpha as s } from "@mui/material";
|
|
8
|
-
import { s as p, c as e } from "./shadows.
|
|
9
|
-
import { g as i } from "../utils/getColorState.
|
|
8
|
+
import { s as p, c as e } from "./shadows.386e7ef4.js";
|
|
9
|
+
import { g as i } from "../utils/getColorState.2c0892d1.js";
|
|
10
10
|
const w = {
|
|
11
11
|
typography: o,
|
|
12
12
|
palette: {
|
|
@@ -5,9 +5,6 @@ export declare const M4LAccordion: (theme: Theme) => {
|
|
|
5
5
|
'&.M4LAccordion-root': {
|
|
6
6
|
width: string;
|
|
7
7
|
background: string;
|
|
8
|
-
boxShadow: string;
|
|
9
|
-
borderTop: string;
|
|
10
|
-
borderColor: string;
|
|
11
8
|
borderRadius: string;
|
|
12
9
|
'& .M4LTypography-root': {
|
|
13
10
|
'& .MuiTypography-root': {
|
|
@@ -15,7 +12,9 @@ export declare const M4LAccordion: (theme: Theme) => {
|
|
|
15
12
|
};
|
|
16
13
|
};
|
|
17
14
|
'& .MuiPaper-root': {
|
|
15
|
+
background: string;
|
|
18
16
|
marginBottom: string;
|
|
17
|
+
borderRadius: string;
|
|
19
18
|
};
|
|
20
19
|
};
|
|
21
20
|
'& .MuiButtonBase-root': {
|
|
@@ -39,7 +38,6 @@ export declare const M4LAccordion: (theme: Theme) => {
|
|
|
39
38
|
};
|
|
40
39
|
'& .MuiCollapse-root': {
|
|
41
40
|
background: string;
|
|
42
|
-
boxShadow: string;
|
|
43
41
|
borderTop: string;
|
|
44
42
|
borderColor: string;
|
|
45
43
|
borderRadius: string;
|
|
@@ -82,15 +82,23 @@ export declare const M4LAccountPopover: (theme: Theme) => {
|
|
|
82
82
|
};
|
|
83
83
|
};
|
|
84
84
|
};
|
|
85
|
-
'& .M4LAccountPopover-
|
|
85
|
+
'& .M4LAccountPopover-containerlogOut': {
|
|
86
|
+
display: string;
|
|
87
|
+
flexDirection: string;
|
|
88
|
+
gap: string;
|
|
86
89
|
padding: string;
|
|
87
90
|
borderRadius: string;
|
|
91
|
+
width: string;
|
|
92
|
+
alignItems: string;
|
|
88
93
|
'&:hover': {
|
|
89
94
|
background: string;
|
|
90
95
|
};
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
96
|
+
'& .M4LAccountPopover-logOut': {
|
|
97
|
+
padding: string;
|
|
98
|
+
borderRadius: string;
|
|
99
|
+
cursor: string;
|
|
100
|
+
color: string;
|
|
101
|
+
};
|
|
94
102
|
};
|
|
95
103
|
'& .M4LPopover-arrowStyle': {
|
|
96
104
|
display: string;
|
|
@@ -6,6 +6,7 @@ export declare const M4LAppBar: (theme: Theme) => {
|
|
|
6
6
|
[x: string]: string | {
|
|
7
7
|
width: string;
|
|
8
8
|
marginLeft: string;
|
|
9
|
+
gap: string;
|
|
9
10
|
display?: undefined;
|
|
10
11
|
alingItems?: undefined;
|
|
11
12
|
height?: undefined;
|
|
@@ -17,7 +18,6 @@ export declare const M4LAppBar: (theme: Theme) => {
|
|
|
17
18
|
justifyContent?: undefined;
|
|
18
19
|
"& .M4LAppBar-iconMenuToggle"?: undefined;
|
|
19
20
|
flexDirection?: undefined;
|
|
20
|
-
gap?: undefined;
|
|
21
21
|
'& .M4LAppBar-containerChilds'?: undefined;
|
|
22
22
|
} | {
|
|
23
23
|
display: string;
|
|
@@ -51,8 +51,8 @@ export declare const M4LAppBar: (theme: Theme) => {
|
|
|
51
51
|
minHeight: string;
|
|
52
52
|
};
|
|
53
53
|
marginLeft?: undefined;
|
|
54
|
-
flexDirection?: undefined;
|
|
55
54
|
gap?: undefined;
|
|
55
|
+
flexDirection?: undefined;
|
|
56
56
|
'& .M4LAppBar-containerChilds'?: undefined;
|
|
57
57
|
} | {
|
|
58
58
|
[x: string]: string | {
|
|
@@ -179,12 +179,10 @@ export declare const M4LAppBar: (theme: Theme) => {
|
|
|
179
179
|
overflow: string;
|
|
180
180
|
height: string;
|
|
181
181
|
alignItems: string;
|
|
182
|
-
borderRadius: string;
|
|
183
182
|
padding: string;
|
|
184
183
|
borderColor: string;
|
|
185
184
|
background: string;
|
|
186
185
|
justifyContent: string;
|
|
187
|
-
marginLeft: string;
|
|
188
186
|
'& .M4LAppBar-containerIconMenuToggle': {
|
|
189
187
|
display: string;
|
|
190
188
|
alingItems: string;
|