@stackframe/stack-ui 2.7.7 → 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 CHANGED
@@ -1,5 +1,21 @@
1
1
  # @stackframe/stack-ui
2
2
 
3
+ ## 2.7.9
4
+
5
+ ### Patch Changes
6
+
7
+ - Various changes
8
+ - Updated dependencies
9
+ - @stackframe/stack-shared@2.7.9
10
+
11
+ ## 2.7.8
12
+
13
+ ### Patch Changes
14
+
15
+ - Various changes
16
+ - Updated dependencies
17
+ - @stackframe/stack-shared@2.7.8
18
+
3
19
  ## 2.7.7
4
20
 
5
21
  ### Patch Changes
@@ -1,26 +1,26 @@
1
- import React from "react";
2
- declare const Card: React.FC<React.HTMLAttributes<HTMLDivElement> & {
3
- ref?: React.Ref<HTMLDivElement> | undefined;
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: React.FC<React.HTMLAttributes<HTMLDivElement> & {
6
- ref?: React.Ref<HTMLDivElement> | undefined;
5
+ declare const ClickableCard: import("react").FC<import("react").HTMLAttributes<HTMLDivElement> & {
6
+ ref?: import("react").Ref<HTMLDivElement> | undefined;
7
7
  }>;
8
- declare const CardHeader: React.FC<React.HTMLAttributes<HTMLDivElement> & {
9
- ref?: React.Ref<HTMLDivElement> | undefined;
8
+ declare const CardHeader: import("react").FC<import("react").HTMLAttributes<HTMLDivElement> & {
9
+ ref?: import("react").Ref<HTMLDivElement> | undefined;
10
10
  }>;
11
- declare const CardTitle: React.FC<React.HTMLAttributes<HTMLHeadingElement> & {
12
- ref?: React.Ref<HTMLParagraphElement> | undefined;
11
+ declare const CardTitle: import("react").FC<import("react").HTMLAttributes<HTMLHeadingElement> & {
12
+ ref?: import("react").Ref<HTMLParagraphElement> | undefined;
13
13
  }>;
14
- declare const CardDescription: React.FC<React.HTMLAttributes<HTMLParagraphElement> & {
15
- ref?: React.Ref<HTMLParagraphElement> | undefined;
14
+ declare const CardDescription: import("react").FC<import("react").HTMLAttributes<HTMLParagraphElement> & {
15
+ ref?: import("react").Ref<HTMLParagraphElement> | undefined;
16
16
  }>;
17
- declare const CardContent: React.FC<React.HTMLAttributes<HTMLDivElement> & {
18
- ref?: React.Ref<HTMLDivElement> | undefined;
17
+ declare const CardContent: import("react").FC<import("react").HTMLAttributes<HTMLDivElement> & {
18
+ ref?: import("react").Ref<HTMLDivElement> | undefined;
19
19
  }>;
20
- declare const CardSubtitle: React.FC<React.HTMLAttributes<HTMLParagraphElement> & {
21
- ref?: React.Ref<HTMLParagraphElement> | undefined;
20
+ declare const CardSubtitle: import("react").FC<import("react").HTMLAttributes<HTMLParagraphElement> & {
21
+ ref?: import("react").Ref<HTMLParagraphElement> | undefined;
22
22
  }>;
23
- declare const CardFooter: React.FC<React.HTMLAttributes<HTMLDivElement> & {
24
- ref?: React.Ref<HTMLDivElement> | undefined;
23
+ declare const CardFooter: import("react").FC<import("react").HTMLAttributes<HTMLDivElement> & {
24
+ ref?: import("react").Ref<HTMLDivElement> | undefined;
25
25
  }>;
26
- export { Card, ClickableCard, CardHeader, CardFooter, CardTitle, CardDescription, CardContent, CardSubtitle };
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, ClickableCard, CardHeader, CardFooter, CardTitle, CardDescription, CardContent, CardSubtitle };
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.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.7"
80
+ "@stackframe/stack-shared": "2.7.9"
81
81
  },
82
82
  "devDependencies": {
83
83
  "@types/react": "^18.2.12",