lkd-web-kit 0.7.2 → 0.7.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.
- package/dist/index.d.ts +1 -1
- package/package.json +8 -8
package/dist/index.d.ts
CHANGED
|
@@ -419,7 +419,7 @@ export declare const MyNotifications: (props: MyNotificationPrpos) => JSX.Elemen
|
|
|
419
419
|
|
|
420
420
|
export declare const MyNumberInput: (props: MyNumberInputProps) => JSX.Element;
|
|
421
421
|
|
|
422
|
-
export declare interface MyNumberInputProps extends NumberInputProps {
|
|
422
|
+
export declare interface MyNumberInputProps extends Omit<NumberInputProps, "onValueChange"> {
|
|
423
423
|
ref?: React.Ref<HTMLInputElement>;
|
|
424
424
|
}
|
|
425
425
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lkd-web-kit",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.3",
|
|
4
4
|
"description": "A template for creating React component libraries with Vite.",
|
|
5
5
|
"author": "LKD",
|
|
6
6
|
"license": "MIT",
|
|
@@ -53,17 +53,17 @@
|
|
|
53
53
|
"vitest": "^3.2.4"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"@mantine/core": "^8.3.
|
|
57
|
-
"@mantine/dates": "^8.3.
|
|
58
|
-
"@mantine/hooks": "^8.3.
|
|
59
|
-
"@mantine/notifications": "^8.3.
|
|
60
|
-
"@tanstack/react-query": "^5.90.
|
|
56
|
+
"@mantine/core": "^8.3.7",
|
|
57
|
+
"@mantine/dates": "^8.3.7",
|
|
58
|
+
"@mantine/hooks": "^8.3.7",
|
|
59
|
+
"@mantine/notifications": "^8.3.7",
|
|
60
|
+
"@tanstack/react-query": "^5.90.7",
|
|
61
61
|
"clsx": "^2.1.1",
|
|
62
|
-
"ky": "^1.
|
|
62
|
+
"ky": "^1.14.0",
|
|
63
63
|
"next": "^16.0.1",
|
|
64
64
|
"react": "^19.2.0",
|
|
65
65
|
"react-dom": "^19.2.0",
|
|
66
|
-
"react-hook-form": "^7.
|
|
66
|
+
"react-hook-form": "^7.66.0",
|
|
67
67
|
"react-query-kit": "^3.3.2",
|
|
68
68
|
"zod": "^4.1.12"
|
|
69
69
|
},
|