@rjsf/shadcn 6.1.1 → 6.1.2

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.
@@ -2,7 +2,7 @@ import { type VariantProps } from 'class-variance-authority';
2
2
  import { ComponentProps } from 'react';
3
3
  declare const alertVariants: (props?: ({
4
4
  variant?: "default" | "destructive" | null | undefined;
5
- } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
5
+ } & import("class-variance-authority/types").ClassProp) | undefined) => string;
6
6
  /** A component that displays a brief, important message in a way that attracts the user's attention without interrupting their task.
7
7
  *
8
8
  * @param props - Component props
@@ -6,7 +6,7 @@ import { ComponentProps } from 'react';
6
6
  */
7
7
  declare const badgeVariants: (props?: ({
8
8
  variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined;
9
- } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
9
+ } & import("class-variance-authority/types").ClassProp) | undefined) => string;
10
10
  /**
11
11
  * A badge component that displays short status descriptors
12
12
  *
@@ -7,7 +7,7 @@ import { ComponentProps } from 'react';
7
7
  declare const buttonVariants: (props?: ({
8
8
  variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined;
9
9
  size?: "default" | "sm" | "lg" | "xs" | "icon" | null | undefined;
10
- } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
10
+ } & import("class-variance-authority/types").ClassProp) | undefined) => string;
11
11
  /**
12
12
  * A button component with multiple style variants and sizes
13
13
  *