@kvell-group/ui 1.8.2 → 1.9.0
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/README.md +0 -0
- package/dist/Text.module-R-XLggXY.js +8 -0
- package/dist/UnstyledButton-D2QHft3M.js +44 -0
- package/dist/assets/CardInput.css +1 -0
- package/dist/assets/Text.css +1 -0
- package/dist/components/Button/Button.js +251 -288
- package/dist/components/CardInput/CardInput.d.ts +145 -0
- package/dist/components/CardInput/CardInput.js +3924 -0
- package/dist/components/CardInput/index.d.ts +1 -0
- package/dist/components/CardInput/index.js +4 -0
- package/dist/components/CardInput/useCardLogo.d.ts +1 -0
- package/dist/components/CardInput/useCardLogo.js +47 -0
- package/dist/components/MainProvider/MantineProvider.js +31 -31
- package/dist/components/Text/Text.d.ts +9 -0
- package/dist/components/Text/Text.js +88 -0
- package/dist/components/Text/index.d.ts +1 -0
- package/dist/components/Text/index.js +4 -0
- package/dist/components/theme.js +40 -23
- package/dist/main.d.ts +3 -2
- package/dist/main.js +10 -8
- package/dist/{polymorphic-factory-DUeudAZR.js → polymorphic-factory-Bvt8Is5k.js} +3 -0
- package/dist/use-isomorphic-effect-TT0F1lfC.js +5 -0
- package/package.json +3 -1
- package/dist/Text-B8e4XllM.js +0 -80
- package/dist/assets/TypographyBodySMedium.css +0 -1
- package/dist/assets/TypographyCaptionLMedium.css +0 -1
- package/dist/components/Button/ExperimentalButtonWithSvg.d.ts +0 -1
- package/dist/components/Button/ExperimentalButtonWithSvg.js +0 -17
- package/dist/components/Typography/TypographyBodySMedium.d.ts +0 -2
- package/dist/components/Typography/TypographyBodySMedium.js +0 -14
- package/dist/components/Typography/TypographyCaptionLMedium.d.ts +0 -2
- package/dist/components/Typography/TypographyCaptionLMedium.js +0 -14
- package/dist/components/Typography/types.d.ts +0 -5
- package/dist/components/Typography/types.js +0 -1
package/README.md
CHANGED
|
Binary file
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { jsx as d } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import { p as B, u as f, a as U, B as _ } from "./polymorphic-factory-Bvt8Is5k.js";
|
|
4
|
+
var o = { root: "m_87cf2631" };
|
|
5
|
+
const b = {
|
|
6
|
+
__staticSelector: "UnstyledButton"
|
|
7
|
+
}, e = B(
|
|
8
|
+
(n, a) => {
|
|
9
|
+
const t = f("UnstyledButton", b, n), {
|
|
10
|
+
className: r,
|
|
11
|
+
component: s = "button",
|
|
12
|
+
__staticSelector: c,
|
|
13
|
+
unstyled: l,
|
|
14
|
+
classNames: u,
|
|
15
|
+
styles: p,
|
|
16
|
+
style: m,
|
|
17
|
+
...y
|
|
18
|
+
} = t, i = U({
|
|
19
|
+
name: c,
|
|
20
|
+
props: t,
|
|
21
|
+
classes: o,
|
|
22
|
+
className: r,
|
|
23
|
+
style: m,
|
|
24
|
+
classNames: u,
|
|
25
|
+
styles: p,
|
|
26
|
+
unstyled: l
|
|
27
|
+
});
|
|
28
|
+
return /* @__PURE__ */ d(
|
|
29
|
+
_,
|
|
30
|
+
{
|
|
31
|
+
...i("root", { focusable: !0 }),
|
|
32
|
+
component: s,
|
|
33
|
+
ref: a,
|
|
34
|
+
type: s === "button" ? "button" : void 0,
|
|
35
|
+
...y
|
|
36
|
+
}
|
|
37
|
+
);
|
|
38
|
+
}
|
|
39
|
+
);
|
|
40
|
+
e.classes = o;
|
|
41
|
+
e.displayName = "@mantine/core/UnstyledButton";
|
|
42
|
+
export {
|
|
43
|
+
e as U
|
|
44
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._input_u23b9_1{border-radius:var(--mantine-radius-xl);border:1px solid var(--mantine-color-border-action-normal-0);color:var(--mantine-color-text-base-tertiary-0)}._section_u23b9_7[data-position=right]{padding-right:.25rem}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._body-s-medium_ziqnx_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)}._caption-l-medium_ziqnx_11{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)}._caption-l-regular_ziqnx_19{font-family:var(--mantine-font-family);font-weight:500;font-size:var(--mantine-font-size-caption-l-regular);line-height:var(--mantine-line-height-caption-l);letter-spacing:var(--mantine-letter-spacing-caption-l)}
|