@m4l/styles 7.1.38 → 7.1.39

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.38",
3
+ "version": "7.1.39",
4
4
  "license": "UNLICENSED",
5
5
  "author": "m4l team",
6
6
  "publishConfig": {
@@ -1,18 +1,18 @@
1
- import { P as a, a as m } from "./presetSizes.js";
1
+ import { P as e, a } from "./presetSizes.js";
2
2
  const s = {
3
3
  small: {
4
- base: a.base.small,
5
- action: a.action.small,
6
- container: a.container.small,
7
- box: a.box.small,
8
- case: a.case.small
4
+ base: e.base.small,
5
+ action: e.action.small,
6
+ container: e.container.small,
7
+ box: e.box.small,
8
+ case: e.case.small
9
9
  },
10
10
  medium: {
11
- base: a.base.medium,
12
- action: a.action.medium,
13
- container: a.container.medium,
14
- box: a.box.medium,
15
- case: a.case.medium
11
+ base: e.base.medium,
12
+ action: e.action.medium,
13
+ container: e.container.medium,
14
+ box: e.box.medium,
15
+ case: e.case.medium
16
16
  }
17
17
  // large: {
18
18
  // base: PRESET_SIZES_DESKTOP.base.large,
@@ -21,30 +21,35 @@ const s = {
21
21
  // box: PRESET_SIZES_DESKTOP.box.large,
22
22
  // case: PRESET_SIZES_DESKTOP.case.large,
23
23
  // },
24
- }, i = {
24
+ }, o = {
25
25
  small: {
26
- base: m.base.small,
27
- action: m.action.small,
28
- container: m.container.small,
29
- box: m.box.small,
30
- case: m.case.small
26
+ base: a.base.small,
27
+ action: a.action.small,
28
+ container: a.container.small,
29
+ box: a.box.small,
30
+ case: a.case.small
31
31
  },
32
32
  medium: {
33
- base: m.base.medium,
34
- action: m.action.medium,
35
- container: m.container.medium,
36
- box: m.box.medium,
37
- case: m.case.medium
33
+ base: a.base.medium,
34
+ action: a.action.medium,
35
+ container: a.container.medium,
36
+ box: a.box.medium,
37
+ case: a.case.medium
38
+ },
39
+ large: {
40
+ // @ts-ignore-next-line
41
+ base: a.base.large,
42
+ // @ts-ignore-next-line
43
+ action: a.action.large,
44
+ // @ts-ignore-next-line
45
+ container: a.container.large,
46
+ // @ts-ignore-next-line
47
+ box: a.box.large,
48
+ // @ts-ignore-next-line
49
+ case: a.case.large
38
50
  }
39
- // large: {
40
- // base: PRESET_SIZES_MOBILE.base.large,
41
- // action: PRESET_SIZES_MOBILE.action.large,
42
- // container: PRESET_SIZES_MOBILE.container.large,
43
- // box: PRESET_SIZES_MOBILE.box.large,
44
- // case: PRESET_SIZES_MOBILE.case.large,
45
- // },
46
51
  };
47
52
  export {
48
53
  s as P,
49
- i as a
54
+ o as a
50
55
  };
@@ -2,54 +2,49 @@ import { B as s } from "./baseSizes.js";
2
2
  const a = {
3
3
  base: {
4
4
  small: s.sp5,
5
- medium: s.sp6
6
- // large: BASE_SPACINGS['sp7'],
5
+ medium: s.sp6,
6
+ large: s.sp7
7
7
  },
8
8
  action: {
9
9
  small: s.sp7,
10
- medium: s.sp8
11
- // large: BASE_SPACINGS['sp9'],
10
+ medium: s.sp8,
11
+ large: s.sp9
12
12
  },
13
13
  container: {
14
14
  small: s.sp9,
15
- medium: s.sp10
16
- // large: BASE_SPACINGS['sp11'],
15
+ medium: s.sp10,
16
+ large: s.sp11
17
17
  },
18
18
  box: {
19
19
  small: s.sp7,
20
- medium: s["sp7-5"]
21
- // large: BASE_SPACINGS['sp8'],
20
+ medium: s["sp7-5"],
21
+ large: s.sp8
22
22
  },
23
23
  case: {
24
24
  small: s["sp4-5"],
25
- medium: s["sp5-5"]
26
- // large: BASE_SPACINGS['sp6'],
25
+ medium: s["sp5-5"],
26
+ large: s.sp6
27
27
  }
28
28
  }, p = {
29
29
  base: {
30
30
  small: s["sp3-5"],
31
31
  medium: s.sp4
32
- // large: BASE_SPACINGS['sp5'],
33
32
  },
34
33
  action: {
35
34
  small: s.sp5,
36
35
  medium: s.sp6
37
- // large: BASE_SPACINGS['sp8'],
38
36
  },
39
37
  container: {
40
38
  small: s.sp7,
41
39
  medium: s.sp8
42
- // large: BASE_SPACINGS['sp9'],
43
40
  },
44
41
  box: {
45
42
  small: s["sp6-5"],
46
43
  medium: s.sp7
47
- // large: BASE_SPACINGS['sp8'],
48
44
  },
49
45
  case: {
50
46
  small: s.sp4,
51
47
  medium: s.sp5
52
- // large: BASE_SPACINGS['sp6'],
53
48
  }
54
49
  };
55
50
  export {