@m4l/styles 3.0.0 → 3.1.0

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.
@@ -9,8 +9,9 @@ const s = {
9
9
  }, e = {
10
10
  mobile: 16,
11
11
  desktop: 16
12
- };
12
+ }, m = "medium";
13
13
  export {
14
+ m as D,
14
15
  e as g,
15
16
  s as m
16
17
  };
package/config.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import { Sizes } from './types';
1
2
  export declare const muiBreakpointsValues: {
2
3
  values: {
3
4
  xs: number;
@@ -11,3 +12,7 @@ export declare const globalRemSize: {
11
12
  mobile: number;
12
13
  desktop: number;
13
14
  };
15
+ /**
16
+ * Constante con el valor por defecto para las props sizes usadas en los componentes o sus derivaciones
17
+ */
18
+ export declare const DEFAULT_SIZE: Sizes;
package/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  export * from './theme';
2
2
  export * from './utils';
3
3
  export * from './types';
4
- export { muiBreakpointsValues, globalRemSize } from './config';
4
+ export { muiBreakpointsValues, globalRemSize, DEFAULT_SIZE } from './config';
package/index.js CHANGED
@@ -1,32 +1,33 @@
1
- import { g as o, m as a } from "./config-CoeBxEZB.js";
2
- import { d as t } from "./theme/defaultThemeOptions-BlJvKCE6.js";
3
- import { c as m, s as f } from "./theme/shadows-GTYqExFA.js";
4
- import { t as x } from "./theme/typography-BsOO459U.js";
5
- import { f as C } from "./theme/overrides/index-DrDgOdnk.js";
6
- import { B as i, a as l, C as S, G as u, g as E, p as P } from "./theme/palette-DM0gXxA2.js";
7
- import { u as T } from "./utils/useResponsive-DaeQVwlH.js";
8
- import { D as _, d as A, g as B } from "./utils/getColorPresets-CXZaM9oS.js";
9
- import { g as h, p as v, a as y, r as F } from "./utils/getFontValue-BEO-XID9.js";
1
+ import { D as o, g as a, m as r } from "./config-B8bZIPuH.js";
2
+ import { d as p } from "./theme/defaultThemeOptions-BlJvKCE6.js";
3
+ import { c as f, s as O } from "./theme/shadows-GTYqExFA.js";
4
+ import { t as n } from "./theme/typography-BsOO459U.js";
5
+ import { f as E } from "./theme/overrides/index-DrDgOdnk.js";
6
+ import { B as g, a as i, C as l, G as T, g as u, p as P } from "./theme/palette-DM0gXxA2.js";
7
+ import { u as d } from "./utils/useResponsive-DaeQVwlH.js";
8
+ import { D as A, d as L, g as B } from "./utils/getColorPresets-CXZaM9oS.js";
9
+ import { g as D, p as F, a as v, r as y } from "./utils/getFontValue-BEO-XID9.js";
10
10
  export {
11
- i as BASE_COLORS,
12
- l as BASE_OPACITY_COLORS,
13
- S as COMMON_COLORS,
14
- _ as DEFAULT_PRESET,
15
- u as GREY_PALETTE,
16
- m as createCustomShadows,
17
- A as defaultPresetColors,
18
- t as defaultThemeOptions,
19
- C as fnComponentsOverrides,
11
+ g as BASE_COLORS,
12
+ i as BASE_OPACITY_COLORS,
13
+ l as COMMON_COLORS,
14
+ A as DEFAULT_PRESET,
15
+ o as DEFAULT_SIZE,
16
+ T as GREY_PALETTE,
17
+ f as createCustomShadows,
18
+ L as defaultPresetColors,
19
+ p as defaultThemeOptions,
20
+ E as fnComponentsOverrides,
20
21
  B as getColorPresets,
21
- h as getFontValue,
22
- E as getPaletteByPreset,
23
- o as globalRemSize,
24
- a as muiBreakpointsValues,
22
+ D as getFontValue,
23
+ u as getPaletteByPreset,
24
+ a as globalRemSize,
25
+ r as muiBreakpointsValues,
25
26
  P as presetsOptions,
26
- v as pxToRem,
27
- y as remToPx,
28
- F as responsiveFontSizes,
29
- f as shadows,
30
- x as typography,
31
- T as useResponsive
27
+ F as pxToRem,
28
+ v as remToPx,
29
+ y as responsiveFontSizes,
30
+ O as shadows,
31
+ n as typography,
32
+ d as useResponsive
32
33
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m4l/styles",
3
- "version": "3.0.0",
3
+ "version": "3.1.0",
4
4
  "license": "UNLICENSED",
5
5
  "author": "m4l team",
6
6
  "dependencies": {
package/types/types.d.ts CHANGED
@@ -1,4 +1,8 @@
1
1
  import { PaletteColor } from '@mui/material/styles';
2
+ /**
3
+ * type usado para tipar las props sizes de los componentes o sus derivaciones
4
+ */
5
+ export declare type Sizes = 'small' | 'medium' | 'large';
2
6
  export declare type ThemeColorPresets = 'patronus' | 'turqui' | 'grass' | 'brown' | 'blaze';
3
7
  export declare type StateColorSchema = 'info' | 'success' | 'warning' | 'error';
4
8
  export declare type ColorSchema = 'primary' | 'secondary' | StateColorSchema;