@m4l/styles 7.1.32 → 7.1.33-BE010925-beta.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m4l/styles",
3
- "version": "7.1.32",
3
+ "version": "7.1.33-BE010925-beta.1",
4
4
  "license": "UNLICENSED",
5
5
  "author": "m4l team",
6
6
  "publishConfig": {
@@ -215,7 +215,7 @@ const e = {
215
215
  // comprobado,,
216
216
  contrastText: a.marbleLight[30],
217
217
  // comprobado,
218
- semanticTextLight: a.flameRed[70],
218
+ semanticTextLight: a.flameRed[50],
219
219
  // comprobado,
220
220
  semanticTextDark: a.flameRed[40],
221
221
  // comprobado,
@@ -0,0 +1,2 @@
1
+ import { Density } from './types';
2
+ export declare const DENSITY: Density;
@@ -0,0 +1,9 @@
1
+ const a = {
2
+ extraCompact: "4px",
3
+ compact: "8px",
4
+ standard: "16px",
5
+ comfortable: "26px"
6
+ };
7
+ export {
8
+ a as D
9
+ };
@@ -21,8 +21,8 @@ const m = {
21
21
  large: s.sp8
22
22
  },
23
23
  case: {
24
- small: s["sp5-5"],
25
- medium: s.sp4,
24
+ small: s["sp4-5"],
25
+ medium: s["sp5-5"],
26
26
  large: s.sp6
27
27
  }
28
28
  }, p = {
@@ -47,7 +47,7 @@ const m = {
47
47
  large: s.sp8
48
48
  },
49
49
  case: {
50
- small: s["sp4-5"],
50
+ small: s.sp4,
51
51
  medium: s.sp5,
52
52
  large: s.sp6
53
53
  }
@@ -1,26 +1,30 @@
1
1
  import { T as o } from "../typography/typography.js";
2
- import { B as r } from "./baseBorder.js";
3
- import { B as S } from "./baseBorderRadius.js";
2
+ import { D as r } from "./BaseDensity.js";
3
+ import { B as S } from "./baseBorder.js";
4
+ import { B as s } from "./baseBorderRadius.js";
4
5
  import { B as E } from "./baseSizes.js";
5
- import { a, P as s } from "./pointerQr.js";
6
- const B = {
6
+ import { a, P as m } from "./pointerQr.js";
7
+ const I = {
7
8
  desktop: {
8
- ...s
9
+ ...m
9
10
  },
10
11
  mobile: {
11
12
  ...a
12
13
  },
13
14
  borderRadius: {
14
- ...S
15
+ ...s
15
16
  },
16
17
  typography: o,
17
18
  borderStroke: {
18
- ...r
19
+ ...S
19
20
  },
20
21
  baseSpacings: {
21
22
  ...E
23
+ },
24
+ density: {
25
+ ...r
22
26
  }
23
27
  };
24
28
  export {
25
- B as S
29
+ I as S
26
30
  };
@@ -8,6 +8,15 @@ export interface BaseBorderRadius {
8
8
  r3: string;
9
9
  r4: string;
10
10
  }
11
+ /**
12
+ * Conjunto de valores predeterminados utilizados para definir la densidad en los componentes de la aplicación web.
13
+ */
14
+ export interface Density {
15
+ extraCompact: string;
16
+ compact: string;
17
+ standard: string;
18
+ comfortable: string;
19
+ }
11
20
  /**
12
21
  * Conjunto de valores predeterminados utilizados para definir el tamaño y espaciados en los componentes de la aplicación web.
13
22
  */
@@ -78,4 +87,5 @@ export interface Size {
78
87
  typography: Typography;
79
88
  borderStroke: BaseBorderStroke;
80
89
  baseSpacings: BaseSpacings;
90
+ density: Density;
81
91
  }