@kvell-group/ui 1.9.2 → 1.10.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 +1 -193
- package/dist/Text.module-D3VLOIGk.js +8 -0
- package/dist/assets/CardInput.css +1 -1
- package/dist/assets/Input.css +1 -0
- package/dist/assets/Text.css +1 -1
- package/dist/clsx-OuTLNxxd.js +16 -0
- package/dist/components/CardInput/CardInput.js +459 -499
- package/dist/components/Input/Input.d.ts +1 -0
- package/dist/components/Input/Input.js +11 -0
- package/dist/components/Input/index.d.ts +1 -0
- package/dist/components/Input/index.js +4 -0
- package/dist/components/Text/Text.js +1 -1
- package/dist/main.d.ts +1 -0
- package/dist/main.js +6 -4
- package/package.json +3 -3
- package/dist/Text.module-R-XLggXY.js +0 -8
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Input: <L = "input">(props: import('@mantine/core').PolymorphicComponentProps<L, import('@mantine/core').InputBaseProps>) => React.ReactElement;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { InputBase as s } from "@mantine/core";
|
|
2
|
+
import { c as t } from "../../Text.module-D3VLOIGk.js";
|
|
3
|
+
import { c as p } from "../../clsx-OuTLNxxd.js";
|
|
4
|
+
import '../../assets/Input.css';const a = "_input_huhi9_1", n = {
|
|
5
|
+
input: a
|
|
6
|
+
}, i = p(n.input, t["caption-l-regular"]), m = s.withProps({
|
|
7
|
+
classNames: { input: i }
|
|
8
|
+
});
|
|
9
|
+
export {
|
|
10
|
+
m as Input
|
|
11
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Input } from './Input';
|
package/dist/main.d.ts
CHANGED
|
@@ -3,4 +3,5 @@ export { MantineProvider } from './components/MainProvider';
|
|
|
3
3
|
export { theme } from './components/theme';
|
|
4
4
|
export { Button } from './components/Button';
|
|
5
5
|
export { CardInput } from './components/CardInput';
|
|
6
|
+
export { Input } from './components/Input';
|
|
6
7
|
export { Text } from './components/Text';
|
package/dist/main.js
CHANGED
|
@@ -2,14 +2,16 @@ import { ColorSchemeScript as t, mantineHtmlProps as e } from "@mantine/core";
|
|
|
2
2
|
import { MantineProvider as p } from "./components/MainProvider/MantineProvider.js";
|
|
3
3
|
import { theme as f } from "./components/theme.js";
|
|
4
4
|
import { Button as i } from "./components/Button/Button.js";
|
|
5
|
-
import { CardInput as
|
|
6
|
-
import {
|
|
5
|
+
import { CardInput as u } from "./components/CardInput/CardInput.js";
|
|
6
|
+
import { Input as d } from "./components/Input/Input.js";
|
|
7
|
+
import { Text as l } from "./components/Text/Text.js";
|
|
7
8
|
export {
|
|
8
9
|
i as Button,
|
|
9
|
-
|
|
10
|
+
u as CardInput,
|
|
10
11
|
t as ColorSchemeScript,
|
|
12
|
+
d as Input,
|
|
11
13
|
p as MantineProvider,
|
|
12
|
-
|
|
14
|
+
l as Text,
|
|
13
15
|
e as mantineHtmlProps,
|
|
14
16
|
f as theme
|
|
15
17
|
};
|
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.
|
|
5
|
+
"version": "1.10.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist",
|
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"@vitest/browser": "^3.1.1",
|
|
47
47
|
"@vitest/coverage-v8": "^3.1.1",
|
|
48
48
|
"autoprefixer": "^10.4.21",
|
|
49
|
-
"classnames": "^2.5.1",
|
|
50
49
|
"eslint": "^9.21.0",
|
|
51
50
|
"eslint-config-prettier": "^10.1.1",
|
|
52
51
|
"eslint-plugin-react-hooks": "^5.1.0",
|
|
@@ -70,7 +69,8 @@
|
|
|
70
69
|
"vite-plugin-lib-inject-css": "^2.2.1",
|
|
71
70
|
"vite-plugin-svgr": "^4.3.0",
|
|
72
71
|
"vite-tsconfig-paths": "^5.1.4",
|
|
73
|
-
"vitest": "^3.1.1"
|
|
72
|
+
"vitest": "^3.1.1",
|
|
73
|
+
"clsx": "^2.1.1"
|
|
74
74
|
},
|
|
75
75
|
"publishConfig": {
|
|
76
76
|
"access": "public"
|