@kvell-group/ui 1.18.17 → 1.18.19

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
@@ -2,7 +2,7 @@
2
2
  "name": "@kvell-group/ui",
3
3
  "author": "Kvell Group",
4
4
  "private": false,
5
- "version": "1.18.17",
5
+ "version": "1.18.19",
6
6
  "type": "module",
7
7
  "main": "src/index.ts",
8
8
  "types": "src/index.ts",
@@ -20,11 +20,11 @@
20
20
  "build-storybook": "storybook build"
21
21
  },
22
22
  "dependencies": {
23
- "@mantine/carousel": "^8.1.3",
24
- "@mantine/core": "^8.1.3",
25
- "@mantine/dates": "^8.1.3",
26
- "@mantine/form": "^8.1.3",
27
- "@mantine/hooks": "^8.1.3"
23
+ "@mantine/carousel": "^8.2.7",
24
+ "@mantine/core": "^8.2.7",
25
+ "@mantine/dates": "^8.2.7",
26
+ "@mantine/form": "^8.2.7",
27
+ "@mantine/hooks": "^8.2.7"
28
28
  },
29
29
  "peerDependencies": {
30
30
  "@remixicon/react": "^4.6.0",
@@ -88,6 +88,7 @@
88
88
  --color-text-base-inverted: #ffffff;
89
89
  --color-text-status-destructive: #e6483d;
90
90
  --color-text-status-info: #4778f5;
91
+ --color-text-status-success: #26bd6c;
91
92
  --color-icon-base-secondary: #0f132499;
92
93
  --color-icon-base-tertiary: #0d112666;
93
94
  --color-icon-base-quaternary: #0a0f2940;
@@ -2,6 +2,7 @@
2
2
  export const H5_MEDIUM_FONT_VARIANT = 'h5-medium' as const
3
3
  export const H5_SEMIBOLD_FONT_VARIANT = 'h5-semibold' as const
4
4
  export const H5_BOLD_FONT_VARIANT = 'h5-bold' as const
5
+ export const H6_MEDIUM_FONT_VARIANT = 'h6-medium' as const
5
6
  export const H6_BOLD_FONT_VARIANT = 'h6-bold' as const
6
7
 
7
8
  //body
@@ -13,6 +14,7 @@ export const BODY_L_BOLD_FONT_VARIANT = 'body-l-bold' as const
13
14
  export const BODY_S_MEDIUM_FONT_VARIANT = 'body-s-medium' as const
14
15
  export const BODY_S_REGULAR_FONT_VARIANT = 'body-s-regular' as const
15
16
  export const BODY_S_SEMIBOLD_FONT_VARIANT = 'body-s-semibold' as const
17
+ export const BODY_S_BOLD_FONT_VARIANT = 'body-s-bold' as const
16
18
 
17
19
  //caption
18
20
  export const CAPTION_L_MEDIUM_FONT_VARIANT = 'caption-l-medium' as const
@@ -26,6 +28,7 @@ export const FontVariants = [
26
28
  H5_MEDIUM_FONT_VARIANT,
27
29
  H5_SEMIBOLD_FONT_VARIANT,
28
30
  H5_BOLD_FONT_VARIANT,
31
+ H6_MEDIUM_FONT_VARIANT,
29
32
  H6_BOLD_FONT_VARIANT,
30
33
  //body
31
34
  BODY_L_MEDIUM_FONT_VARIANT,
@@ -36,6 +39,7 @@ export const FontVariants = [
36
39
  BODY_S_MEDIUM_FONT_VARIANT,
37
40
  BODY_S_REGULAR_FONT_VARIANT,
38
41
  BODY_S_SEMIBOLD_FONT_VARIANT,
42
+ BODY_S_BOLD_FONT_VARIANT,
39
43
  //caption
40
44
  CAPTION_L_MEDIUM_FONT_VARIANT,
41
45
  CAPTION_L_REGULAR_FONT_VARIANT,
@@ -105,6 +105,14 @@ h2.body-m-medium,
105
105
  letter-spacing: var(--mantine-spacing-body-s);
106
106
  }
107
107
 
108
+ .body-s-bold {
109
+ font-family: var(--mantine-font-family);
110
+ font-weight: 700;
111
+ font-size: var(--mantine-font-size-body-s);
112
+ line-height: var(--mantine-line-height-body-s);
113
+ letter-spacing: var(--mantine-spacing-body-s);
114
+ }
115
+
108
116
  /* caption */
109
117
  .caption-l-medium {
110
118
  font-family: var(--mantine-font-family);