@lctafrica/ui 1.0.11 → 1.0.12

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.
@@ -1,7 +1,7 @@
1
1
  import { VariantProps } from 'class-variance-authority';
2
2
  import { ComponentProps } from 'react';
3
3
  declare const cardVariants: (props?: ({
4
- variant?: "primary" | "dashed" | null | undefined;
4
+ variant?: "primary" | "dashed" | "outlined" | null | undefined;
5
5
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
6
6
  export type CardProps = ComponentProps<"article"> & VariantProps<typeof cardVariants>;
7
7
  export declare function Card({ className, variant, ...rest }: CardProps): import("react/jsx-runtime").JSX.Element;
package/dist/index.js CHANGED
@@ -11487,11 +11487,12 @@ function fM({
11487
11487
  }
11488
11488
  );
11489
11489
  }
11490
- const tx = At("rounded-lg px-15 py-7", {
11490
+ const tx = At("rounded-lg px-15 py-7", {
11491
11491
  variants: {
11492
11492
  variant: {
11493
11493
  primary: "shadow-[0px_8px_29px_0px_#0000001A]",
11494
- dashed: "!border-[1.6px] !border-dashed !border-primary-light"
11494
+ dashed: "!border-[1.6px] !border-dashed !border-primary-light",
11495
+ outlined: "border border-gray-200"
11495
11496
  }
11496
11497
  },
11497
11498
  defaultVariants: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lctafrica/ui",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",