@kvell-group/ui 1.12.5 → 1.12.6
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 +5 -2
- 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
|
|
@@ -74,6 +74,7 @@ const a = {
|
|
|
74
74
|
//blank variables
|
|
75
75
|
"body-m": "-0.20000000298023224px",
|
|
76
76
|
"body-s": "-0.20000000298023224px",
|
|
77
|
+
"body-l": "-0.20000000298023224px",
|
|
77
78
|
"caption-l": "-0.10000000149011612px;",
|
|
78
79
|
//mantine default variables
|
|
79
80
|
xs: "0.625rem",
|
|
@@ -86,6 +87,7 @@ const a = {
|
|
|
86
87
|
fontSizes: {
|
|
87
88
|
//blank variables
|
|
88
89
|
"body-m": "18px",
|
|
90
|
+
"body-l": "20px",
|
|
89
91
|
"body-s-medium": "16px",
|
|
90
92
|
"caption-l": "14px",
|
|
91
93
|
// mantine default variables
|
|
@@ -100,6 +102,7 @@ const a = {
|
|
|
100
102
|
//blank variables
|
|
101
103
|
"body-m": "26px",
|
|
102
104
|
"body-s": "24px",
|
|
105
|
+
"body-l": "28px",
|
|
103
106
|
"caption-l": "20px",
|
|
104
107
|
// mantine default variables
|
|
105
108
|
xs: "1.4",
|
|
@@ -164,5 +167,5 @@ const a = {
|
|
|
164
167
|
}
|
|
165
168
|
};
|
|
166
169
|
export {
|
|
167
|
-
|
|
170
|
+
o as theme
|
|
168
171
|
};
|
|
@@ -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
|
-
};
|