@kvell-group/ui 1.12.5 → 1.12.7
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/dist/assets/typography.css +1 -1
- package/dist/components/Inputs/Input.js +1 -1
- package/dist/components/Inputs/PasswordInput/PasswordInput.js +1 -1
- package/dist/components/Modal/Modal.js +1 -1
- package/dist/components/Text/Text.js +1 -1
- package/dist/components/theme.js +6 -2
- package/dist/constants/font-variants.d.ts +2 -1
- package/dist/constants/font-variants.js +7 -5
- package/dist/typography.module-xLhxClx0.js +10 -0
- package/package.json +1 -1
- package/dist/typography.module-gwO-h9Os.js +0 -9
|
@@ -1 +1 @@
|
|
|
1
|
-
._body-s-
|
|
1
|
+
._body-s-medium_164gl_2{font-family:var(--mantine-font-family);font-weight:500;font-size:var(--mantine-font-size-body-s-medium);line-height:var(--mantine-line-height-body-s);letter-spacing:var(--mantine-letter-spacing-body-s)}h2._body-m-medium_164gl_10,._body-m-medium_164gl_10{font-family:var(--mantine-font-family);font-weight:500;font-size:var(--mantine-font-size-body-m);line-height:var(--mantine-line-height-body-m);letter-spacing:var(--mantine-letter-spacing-body-m)}._body-l-bold_164gl_19{font-family:var(--mantine-font-family);font-weight:700;font-size:var(--mantine-font-size-body-l);line-height:var(--mantine-line-height-body-l);letter-spacing:var(--mantine-letter-spacing-body-l)}._caption-l-medium_164gl_28{font-family:var(--mantine-font-family);font-weight:500;font-size:var(--mantine-font-size-caption-l);line-height:var(--mantine-line-height-caption-l);letter-spacing:var(--mantine-letter-spacing-caption-l)}p._caption-l-regular_164gl_36,._caption-l-regular_164gl_36{font-family:var(--mantine-font-family);font-weight:400;font-size:var(--mantine-font-size-caption-l);line-height:var(--mantine-line-height-caption-l);letter-spacing:var(--mantine-letter-spacing-caption-l)}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { InputBase as a } from "@mantine/core";
|
|
2
2
|
import { c as s, b as o } from "../../clsx-BvFBxcni.js";
|
|
3
|
-
import { c as t } from "../../typography.module-
|
|
3
|
+
import { c as t } from "../../typography.module-xLhxClx0.js";
|
|
4
4
|
import { CAPTION_L_REGULAR_FONT_VARIANT as e } from "../../constants/font-variants.js";
|
|
5
5
|
const { input: m, error: p, ...n } = o, r = t[e], c = s(m, r), i = s(p, r), I = a.withProps({
|
|
6
6
|
classNames: { ...n, input: c, error: i }
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PasswordInput as t } from "@mantine/core";
|
|
2
2
|
import { c as s, b as a } from "../../../clsx-BvFBxcni.js";
|
|
3
|
-
import { c as r } from "../../../typography.module-
|
|
3
|
+
import { c as r } from "../../../typography.module-xLhxClx0.js";
|
|
4
4
|
import { CAPTION_L_REGULAR_FONT_VARIANT as e } from "../../../constants/font-variants.js";
|
|
5
5
|
import '../../../assets/PasswordInput.css';const n = "_section_1lzoc_1", c = {
|
|
6
6
|
section: n
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Modal as o } from "@mantine/core";
|
|
2
|
-
import { c } from "../../typography.module-
|
|
2
|
+
import { c } from "../../typography.module-xLhxClx0.js";
|
|
3
3
|
import { BODY_M_MEDIUM_FONT_VARIANT as s } from "../../constants/font-variants.js";
|
|
4
4
|
import '../../assets/Modal.css';const t = "_root_jcnc7_1", e = "_content_jcnc7_5", a = "_header_jcnc7_12", n = "_close_jcnc7_16", _ = {
|
|
5
5
|
root: t,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as r } from "react/jsx-runtime";
|
|
2
2
|
import { Text as m } from "@mantine/core";
|
|
3
3
|
import { forwardRef as s } from "react";
|
|
4
|
-
import { c as a } from "../../typography.module-
|
|
4
|
+
import { c as a } from "../../typography.module-xLhxClx0.js";
|
|
5
5
|
const c = s((t, o) => /* @__PURE__ */ r(
|
|
6
6
|
m,
|
|
7
7
|
{
|
package/dist/components/theme.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { colorsTuple as e } from "@mantine/core";
|
|
2
|
-
const
|
|
2
|
+
const o = {
|
|
3
3
|
focusRing: "never",
|
|
4
4
|
scale: 1,
|
|
5
5
|
//default value
|
|
@@ -18,6 +18,7 @@ const a = {
|
|
|
18
18
|
"background-button-tertiary": e("#0a0f290a"),
|
|
19
19
|
//icons
|
|
20
20
|
"icon-base-secondary": e("#0f132499"),
|
|
21
|
+
"icon-base-tertiary": e("#0D112666"),
|
|
21
22
|
// icon/base/secondary
|
|
22
23
|
//text
|
|
23
24
|
"text-base-secondary": e("#0f132499"),
|
|
@@ -74,6 +75,7 @@ const a = {
|
|
|
74
75
|
//blank variables
|
|
75
76
|
"body-m": "-0.20000000298023224px",
|
|
76
77
|
"body-s": "-0.20000000298023224px",
|
|
78
|
+
"body-l": "-0.20000000298023224px",
|
|
77
79
|
"caption-l": "-0.10000000149011612px;",
|
|
78
80
|
//mantine default variables
|
|
79
81
|
xs: "0.625rem",
|
|
@@ -86,6 +88,7 @@ const a = {
|
|
|
86
88
|
fontSizes: {
|
|
87
89
|
//blank variables
|
|
88
90
|
"body-m": "18px",
|
|
91
|
+
"body-l": "20px",
|
|
89
92
|
"body-s-medium": "16px",
|
|
90
93
|
"caption-l": "14px",
|
|
91
94
|
// mantine default variables
|
|
@@ -100,6 +103,7 @@ const a = {
|
|
|
100
103
|
//blank variables
|
|
101
104
|
"body-m": "26px",
|
|
102
105
|
"body-s": "24px",
|
|
106
|
+
"body-l": "28px",
|
|
103
107
|
"caption-l": "20px",
|
|
104
108
|
// mantine default variables
|
|
105
109
|
xs: "1.4",
|
|
@@ -164,5 +168,5 @@ const a = {
|
|
|
164
168
|
}
|
|
165
169
|
};
|
|
166
170
|
export {
|
|
167
|
-
|
|
171
|
+
o as theme
|
|
168
172
|
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const BODY_M_MEDIUM_FONT_VARIANT: "body-m-medium";
|
|
2
2
|
export declare const BODY_S_MEDIUM_FONT_VARIANT: "body-s-medium";
|
|
3
|
+
export declare const BODY_L_BOLD_FONT_VARIANT: "body-l-bold";
|
|
3
4
|
export declare const CAPTION_L_MEDIUM_FONT_VARIANT: "caption-l-medium";
|
|
4
5
|
export declare const CAPTION_L_REGULAR_FONT_VARIANT: "caption-l-regular";
|
|
5
|
-
export declare const FontVariants: ("body-s-medium" | "body-m-medium" | "caption-l-medium" | "caption-l-regular")[];
|
|
6
|
+
export declare const FontVariants: ("body-s-medium" | "body-m-medium" | "body-l-bold" | "caption-l-medium" | "caption-l-regular")[];
|
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
const _ = "body-m-medium", o = "body-s-medium", A = "caption-l-medium",
|
|
1
|
+
const _ = "body-m-medium", o = "body-s-medium", A = "body-l-bold", N = "caption-l-medium", T = "caption-l-regular", t = [
|
|
2
2
|
_,
|
|
3
3
|
o,
|
|
4
4
|
A,
|
|
5
|
-
|
|
5
|
+
N,
|
|
6
|
+
T
|
|
6
7
|
];
|
|
7
8
|
export {
|
|
9
|
+
A as BODY_L_BOLD_FONT_VARIANT,
|
|
8
10
|
_ as BODY_M_MEDIUM_FONT_VARIANT,
|
|
9
11
|
o as BODY_S_MEDIUM_FONT_VARIANT,
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
12
|
+
N as CAPTION_L_MEDIUM_FONT_VARIANT,
|
|
13
|
+
T as CAPTION_L_REGULAR_FONT_VARIANT,
|
|
14
|
+
t as FontVariants
|
|
13
15
|
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import './assets/typography.css';const l = {
|
|
2
|
+
"body-s-medium": "_body-s-medium_164gl_2",
|
|
3
|
+
"body-m-medium": "_body-m-medium_164gl_10",
|
|
4
|
+
"body-l-bold": "_body-l-bold_164gl_19",
|
|
5
|
+
"caption-l-medium": "_caption-l-medium_164gl_28",
|
|
6
|
+
"caption-l-regular": "_caption-l-regular_164gl_36"
|
|
7
|
+
};
|
|
8
|
+
export {
|
|
9
|
+
l as c
|
|
10
|
+
};
|
package/package.json
CHANGED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import './assets/typography.css';const m = {
|
|
2
|
-
"body-s-medium": "_body-s-medium_1la8r_2",
|
|
3
|
-
"body-m-medium": "_body-m-medium_1la8r_10",
|
|
4
|
-
"caption-l-medium": "_caption-l-medium_1la8r_20",
|
|
5
|
-
"caption-l-regular": "_caption-l-regular_1la8r_28"
|
|
6
|
-
};
|
|
7
|
-
export {
|
|
8
|
-
m as c
|
|
9
|
-
};
|