@kvell-group/ui 1.18.18 → 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.18",
5
+ "version": "1.18.19",
6
6
  "type": "module",
7
7
  "main": "src/index.ts",
8
8
  "types": "src/index.ts",
@@ -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;
@@ -14,6 +14,7 @@ export const BODY_L_BOLD_FONT_VARIANT = 'body-l-bold' as const
14
14
  export const BODY_S_MEDIUM_FONT_VARIANT = 'body-s-medium' as const
15
15
  export const BODY_S_REGULAR_FONT_VARIANT = 'body-s-regular' as const
16
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
17
18
 
18
19
  //caption
19
20
  export const CAPTION_L_MEDIUM_FONT_VARIANT = 'caption-l-medium' as const
@@ -38,6 +39,7 @@ export const FontVariants = [
38
39
  BODY_S_MEDIUM_FONT_VARIANT,
39
40
  BODY_S_REGULAR_FONT_VARIANT,
40
41
  BODY_S_SEMIBOLD_FONT_VARIANT,
42
+ BODY_S_BOLD_FONT_VARIANT,
41
43
  //caption
42
44
  CAPTION_L_MEDIUM_FONT_VARIANT,
43
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);