@kvell-group/ui 1.11.2 → 1.11.3
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.
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ButtonProps } from '@mantine/core';
|
|
2
|
-
export declare const Button: (
|
|
2
|
+
export declare const Button: import('react').ForwardRefExoticComponent<ButtonProps & import('react').RefAttributes<HTMLButtonElement>>;
|
|
@@ -1,14 +1,16 @@
|
|
|
1
|
-
import { jsx as
|
|
1
|
+
import { jsx as r } from "react/jsx-runtime";
|
|
2
2
|
import { Button as s } from "@mantine/core";
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
import { forwardRef as m } from "react";
|
|
4
|
+
import '../../assets/Button.css';const a = "_root_arz1h_1", n = {
|
|
5
|
+
root: a
|
|
6
|
+
}, p = m((o, t) => /* @__PURE__ */ r(
|
|
6
7
|
s,
|
|
7
8
|
{
|
|
9
|
+
ref: t,
|
|
8
10
|
...o,
|
|
9
11
|
classNames: n
|
|
10
12
|
}
|
|
11
|
-
);
|
|
13
|
+
));
|
|
12
14
|
export {
|
|
13
|
-
|
|
15
|
+
p as Button
|
|
14
16
|
};
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { TextProps as TextBaseProps } from '@mantine/core';
|
|
2
2
|
import { ReactNode } from 'react';
|
|
3
3
|
import { TextVariants } from './types';
|
|
4
|
-
export
|
|
4
|
+
export declare const Text: import('react').ForwardRefExoticComponent<Omit<TextBaseProps, "variant"> & {
|
|
5
5
|
children: ReactNode;
|
|
6
6
|
variant?: TextVariants;
|
|
7
|
-
}
|
|
8
|
-
export declare const Text: (props: TextProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
} & import('react').RefAttributes<HTMLParagraphElement>>;
|
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { Text as
|
|
1
|
+
import { jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import { Text as m } from "@mantine/core";
|
|
3
|
+
import { forwardRef as s } from "react";
|
|
3
4
|
import { c as a } from "../../typography.module-D5hr9RHB.js";
|
|
4
|
-
const
|
|
5
|
-
|
|
5
|
+
const c = s((t, o) => /* @__PURE__ */ r(
|
|
6
|
+
m,
|
|
6
7
|
{
|
|
8
|
+
ref: o,
|
|
7
9
|
...t,
|
|
8
10
|
classNames: { root: a[t.variant || "text"] }
|
|
9
11
|
}
|
|
10
|
-
);
|
|
12
|
+
));
|
|
11
13
|
export {
|
|
12
|
-
|
|
14
|
+
c as Text
|
|
13
15
|
};
|