@m4l/styles 0.0.39 → 0.0.41

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 CHANGED
@@ -3,7 +3,7 @@ import { d as g } from "./theme/defaultThemeOptions.c5fe2519.js";
3
3
  import { c as u, s as d } from "./theme/shadows.479d005a.js";
4
4
  import { P as S, p as C } from "./theme/palette.1b577d8c.js";
5
5
  import { t as R } from "./theme/typography.b14a8e35.js";
6
- import { f as c } from "./theme/overrides/index.bc8d85de.js";
6
+ import { f as c } from "./theme/overrides/index.a3e99f67.js";
7
7
  import { u as T } from "./utils/useResponsive.2c45e8e0.js";
8
8
  import { g as w } from "./utils/getColorState.0ad9ea67.js";
9
9
  import { e as y, b as F, c as V, d as k, g as q, a as A, t as B } from "./utils/getColorPresets.479f9922.js";
@@ -11,7 +11,7 @@ import { g as N, p as U, a as j, r as D } from "./utils/getFontValue.88831637.js
11
11
  import "@mui/material";
12
12
  import "@mui/material/styles";
13
13
  import "./theme/overrides/MUIComponents/index.b3f5b7a7.js";
14
- import "./theme/overrides/M4LExtendedComponents/index.f5ad1a5c.js";
14
+ import "./theme/overrides/M4LExtendedComponents/index.8f5f04ca.js";
15
15
  import "@mui/system";
16
16
  import "./theme/overrides/M4LRHFComponents/index.427e0f0e.js";
17
17
  import "@mui/material/useMediaQuery";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m4l/styles",
3
- "version": "0.0.39",
3
+ "version": "0.0.41",
4
4
  "license": "UNLICENSED",
5
5
  "author": "m4l team",
6
6
  "dependencies": {
@@ -30,7 +30,6 @@ export declare const M4LAppBar: (theme: Theme) => {
30
30
  '& .M4LImage-root': {
31
31
  width: string;
32
32
  height: string;
33
- backgroundColor: string;
34
33
  borderRadius: string;
35
34
  padding: string;
36
35
  };
@@ -39,6 +38,7 @@ export declare const M4LAppBar: (theme: Theme) => {
39
38
  alignItems: string;
40
39
  gap: string;
41
40
  width: string;
41
+ height: string;
42
42
  '& .M4LTypography-root': {
43
43
  textWrap: string;
44
44
  textTransform: string;
@@ -246,7 +246,6 @@ export declare const M4LAppBar: (theme: Theme) => {
246
246
  '& .M4LImage-root': {
247
247
  width: string;
248
248
  height: string;
249
- backgroundColor: string;
250
249
  borderRadius: string;
251
250
  padding: string;
252
251
  };
@@ -255,6 +254,7 @@ export declare const M4LAppBar: (theme: Theme) => {
255
254
  alignItems: string;
256
255
  gap: string;
257
256
  width: string;
257
+ height: string;
258
258
  '& .M4LTypography-root': {
259
259
  textWrap: string;
260
260
  textTransform: string;
@@ -0,0 +1,21 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const M4LAppBarCommercial: (theme: Theme) => {
3
+ M4LAppBarCommercial: {
4
+ styleOverrides: {
5
+ '&.M4LAppBarCommercial-root': {
6
+ [x: string]: string | {
7
+ padding: string;
8
+ };
9
+ width: string;
10
+ display: string;
11
+ justifyContent: string;
12
+ alignItems: string;
13
+ padding: string;
14
+ minHeight: string;
15
+ backgroundColor: string;
16
+ position: string;
17
+ zIndex: string;
18
+ };
19
+ };
20
+ };
21
+ };
@@ -0,0 +1,12 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const M4LHamburgerMenuCommercial: (_theme: Theme) => {
3
+ M4LHamburgerMenuCommercial: {
4
+ styleOverrides: {
5
+ '&.M4LHamburgerMenuCommercial-root': {
6
+ '& .M4LSideBar-root': {
7
+ display: string;
8
+ };
9
+ };
10
+ };
11
+ };
12
+ };
@@ -0,0 +1,26 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const M4LSectionCommercial: (theme: Theme) => {
3
+ M4LSectionCommercial: {
4
+ styleOverrides: {
5
+ '&.M4LSectionCommercial-root': {
6
+ [x: string]: string | {
7
+ [x: string]: {
8
+ flexFlow: string;
9
+ };
10
+ flexDirection?: undefined;
11
+ } | {
12
+ flexDirection: string;
13
+ };
14
+ display: string;
15
+ flexDirection: string;
16
+ alignItems: string;
17
+ height: string;
18
+ '&.M4LSectionCommercial-columnReverse': {
19
+ [x: string]: {
20
+ flexFlow: string;
21
+ };
22
+ };
23
+ };
24
+ };
25
+ };
26
+ };