@melv1c/ui-core 1.1.0 → 1.1.1
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.mts +2 -2
- package/package.json +4 -13
package/dist/index.d.mts
CHANGED
|
@@ -57,7 +57,7 @@ declare function AlertDescription({
|
|
|
57
57
|
//#region src/components/base/button.d.ts
|
|
58
58
|
declare const buttonVariants: (props?: ({
|
|
59
59
|
variant?: "default" | "secondary" | "destructive" | "outline" | "ghost" | "link" | null | undefined;
|
|
60
|
-
size?: "default" | "
|
|
60
|
+
size?: "default" | "xs" | "sm" | "lg" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
|
|
61
61
|
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
62
62
|
declare function Button({
|
|
63
63
|
className,
|
|
@@ -897,7 +897,7 @@ declare function InputGroupAddon({
|
|
|
897
897
|
...props
|
|
898
898
|
}: React$1.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime0.JSX.Element;
|
|
899
899
|
declare const inputGroupButtonVariants: (props?: ({
|
|
900
|
-
size?: "
|
|
900
|
+
size?: "xs" | "sm" | "icon-xs" | "icon-sm" | null | undefined;
|
|
901
901
|
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
902
902
|
declare function InputGroupButton({
|
|
903
903
|
className,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@melv1c/ui-core",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Core package of reusable UI components for the @melv1c packages monorepo.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"access": "public"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
|
-
"
|
|
34
|
-
"
|
|
33
|
+
"build": "tsdown",
|
|
34
|
+
"dev": "tsdown --watch --no-clean"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@base-ui/react": "^1.2.0",
|
|
@@ -95,14 +95,5 @@
|
|
|
95
95
|
"react-dom": ">=19",
|
|
96
96
|
"tailwindcss": "^4.1.17",
|
|
97
97
|
"tw-animate-css": "^1.4.0"
|
|
98
|
-
}
|
|
99
|
-
"peerDependenciesMeta": {
|
|
100
|
-
"tailwindcss": {
|
|
101
|
-
"optional": true
|
|
102
|
-
},
|
|
103
|
-
"tw-animate-css": {
|
|
104
|
-
"optional": true
|
|
105
|
-
}
|
|
106
|
-
},
|
|
107
|
-
"packageManager": "bun@1.3.9"
|
|
98
|
+
}
|
|
108
99
|
}
|