@stackframe/stack-ui 2.7.8 → 2.7.9
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/CHANGELOG.md +8 -0
- package/dist/components/ui/card.d.ts +18 -18
- package/dist/components/ui/card.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
|
|
2
|
-
declare const Card:
|
|
3
|
-
ref?:
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const Card: import("react").FC<import("react").HTMLAttributes<HTMLDivElement> & {
|
|
3
|
+
ref?: import("react").Ref<HTMLDivElement> | undefined;
|
|
4
4
|
}>;
|
|
5
|
-
declare const ClickableCard:
|
|
6
|
-
ref?:
|
|
5
|
+
declare const ClickableCard: import("react").FC<import("react").HTMLAttributes<HTMLDivElement> & {
|
|
6
|
+
ref?: import("react").Ref<HTMLDivElement> | undefined;
|
|
7
7
|
}>;
|
|
8
|
-
declare const CardHeader:
|
|
9
|
-
ref?:
|
|
8
|
+
declare const CardHeader: import("react").FC<import("react").HTMLAttributes<HTMLDivElement> & {
|
|
9
|
+
ref?: import("react").Ref<HTMLDivElement> | undefined;
|
|
10
10
|
}>;
|
|
11
|
-
declare const CardTitle:
|
|
12
|
-
ref?:
|
|
11
|
+
declare const CardTitle: import("react").FC<import("react").HTMLAttributes<HTMLHeadingElement> & {
|
|
12
|
+
ref?: import("react").Ref<HTMLParagraphElement> | undefined;
|
|
13
13
|
}>;
|
|
14
|
-
declare const CardDescription:
|
|
15
|
-
ref?:
|
|
14
|
+
declare const CardDescription: import("react").FC<import("react").HTMLAttributes<HTMLParagraphElement> & {
|
|
15
|
+
ref?: import("react").Ref<HTMLParagraphElement> | undefined;
|
|
16
16
|
}>;
|
|
17
|
-
declare const CardContent:
|
|
18
|
-
ref?:
|
|
17
|
+
declare const CardContent: import("react").FC<import("react").HTMLAttributes<HTMLDivElement> & {
|
|
18
|
+
ref?: import("react").Ref<HTMLDivElement> | undefined;
|
|
19
19
|
}>;
|
|
20
|
-
declare const CardSubtitle:
|
|
21
|
-
ref?:
|
|
20
|
+
declare const CardSubtitle: import("react").FC<import("react").HTMLAttributes<HTMLParagraphElement> & {
|
|
21
|
+
ref?: import("react").Ref<HTMLParagraphElement> | undefined;
|
|
22
22
|
}>;
|
|
23
|
-
declare const CardFooter:
|
|
24
|
-
ref?:
|
|
23
|
+
declare const CardFooter: import("react").FC<import("react").HTMLAttributes<HTMLDivElement> & {
|
|
24
|
+
ref?: import("react").Ref<HTMLDivElement> | undefined;
|
|
25
25
|
}>;
|
|
26
|
-
export { Card,
|
|
26
|
+
export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardSubtitle, CardTitle, ClickableCard };
|
|
@@ -16,4 +16,4 @@ CardContent.displayName = "CardContent";
|
|
|
16
16
|
const CardSubtitle = forwardRefIfNeeded(({ className, ...props }, ref) => (_jsx("h4", { ref: ref, className: cn("text-sm text-muted-foreground font-bold", className), ...props })));
|
|
17
17
|
const CardFooter = forwardRefIfNeeded(({ className, ...props }, ref) => (_jsx("div", { ref: ref, className: cn("flex items-center p-6 pt-0", className), ...props })));
|
|
18
18
|
CardFooter.displayName = "CardFooter";
|
|
19
|
-
export { Card,
|
|
19
|
+
export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardSubtitle, CardTitle, ClickableCard };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stackframe/stack-ui",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.9",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"react-hook-form": "^7.53.1",
|
|
78
78
|
"react-resizable-panels": "^2.1.6",
|
|
79
79
|
"tailwind-merge": "^2.5.4",
|
|
80
|
-
"@stackframe/stack-shared": "2.7.
|
|
80
|
+
"@stackframe/stack-shared": "2.7.9"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
83
|
"@types/react": "^18.2.12",
|