holie-vkit 1.1.9 → 1.1.10

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.
@@ -7,3 +7,5 @@ export declare const Card: React.ForwardRefExoticComponent<CardProps & React.Ref
7
7
  export declare const CardHeader: ({ children, className, ...props }: CardProps) => import("react/jsx-runtime").JSX.Element;
8
8
  export declare const CardContent: ({ children, className, ...props }: CardProps) => import("react/jsx-runtime").JSX.Element;
9
9
  export declare const CardFooter: ({ children, className, ...props }: CardProps) => import("react/jsx-runtime").JSX.Element;
10
+ export declare const CardTitle: ({ children, className, ...props }: CardProps) => import("react/jsx-runtime").JSX.Element;
11
+ export declare const CardDescription: ({ children, className, ...props }: CardProps) => import("react/jsx-runtime").JSX.Element;
@@ -5,3 +5,5 @@ Card.displayName = 'Card';
5
5
  export const CardHeader = ({ children, className = '', ...props }) => (_jsx("div", { className: `p-4 border-b ${className}`, ...props, children: children }));
6
6
  export const CardContent = ({ children, className = '', ...props }) => (_jsx("div", { className: `p-4 ${className}`, ...props, children: children }));
7
7
  export const CardFooter = ({ children, className = '', ...props }) => (_jsx("div", { className: `p-4 border-t ${className}`, ...props, children: children }));
8
+ export const CardTitle = ({ children, className = '', ...props }) => (_jsx("h3", { className: `text-2xl font-semibold leading-none tracking-tight ${className}`, ...props, children: children }));
9
+ export const CardDescription = ({ children, className = '', ...props }) => (_jsx("p", { className: `text-sm text-muted-foreground ${className}`, ...props, children: children }));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "holie-vkit",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "module": "dist/index.js",