@reeverdev/ui 0.2.17 → 0.2.19

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/dist/index.d.cts CHANGED
@@ -328,9 +328,14 @@ declare const HoverCard: React$1.FC<HoverCardPrimitive.HoverCardProps>;
328
328
  declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<HoverCardPrimitive.HoverCardTriggerProps & React$1.RefAttributes<HTMLAnchorElement>>;
329
329
  declare const HoverCardContent: React$1.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
330
330
 
331
- declare const Breadcrumb: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
332
- separator?: React$1.ReactNode;
333
- } & React$1.RefAttributes<HTMLElement>>;
331
+ declare const breadcrumbVariants: (props?: ({
332
+ size?: "sm" | "md" | "lg" | null | undefined;
333
+ variant?: "bordered" | "default" | "filled" | null | undefined;
334
+ radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
335
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
336
+ interface BreadcrumbProps extends React$1.ComponentPropsWithoutRef<"nav">, VariantProps<typeof breadcrumbVariants> {
337
+ }
338
+ declare const Breadcrumb: React$1.ForwardRefExoticComponent<BreadcrumbProps & React$1.RefAttributes<HTMLElement>>;
334
339
  declare const BreadcrumbList: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "ref"> & React$1.RefAttributes<HTMLOListElement>>;
335
340
  declare const BreadcrumbItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
336
341
  declare const BreadcrumbLink: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & {
@@ -938,19 +943,15 @@ interface DotsProps extends React$1.HTMLAttributes<HTMLSpanElement>, VariantProp
938
943
  declare const Dots: React$1.ForwardRefExoticComponent<DotsProps & React$1.RefAttributes<HTMLSpanElement>>;
939
944
 
940
945
  declare const circularProgressVariants: (props?: ({
941
- size?: "sm" | "md" | "lg" | "xl" | null | undefined;
946
+ size?: "sm" | "md" | "lg" | null | undefined;
947
+ color?: "default" | "success" | "warning" | "danger" | null | undefined;
942
948
  } & class_variance_authority_types.ClassProp) | undefined) => string;
943
- interface CircularProgressProps extends React$1.SVGAttributes<SVGSVGElement>, VariantProps<typeof circularProgressVariants> {
944
- /** Progress value (0-100). If undefined, shows indeterminate spinner */
949
+ interface CircularProgressProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "color">, VariantProps<typeof circularProgressVariants> {
945
950
  value?: number;
946
- /** Stroke width of the progress circle */
947
- strokeWidth?: number;
948
- /** Whether to show the value label in the center */
949
951
  showValue?: boolean;
950
- /** Custom label to show instead of percentage */
951
- label?: string;
952
+ trackClassName?: string;
952
953
  }
953
- declare const CircularProgress: React$1.ForwardRefExoticComponent<CircularProgressProps & React$1.RefAttributes<SVGSVGElement>>;
954
+ declare const CircularProgress: React$1.ForwardRefExoticComponent<CircularProgressProps & React$1.RefAttributes<HTMLDivElement>>;
954
955
 
955
956
  declare const inputOTPVariants: (props?: ({
956
957
  size?: "sm" | "md" | "lg" | null | undefined;
package/dist/index.d.ts CHANGED
@@ -328,9 +328,14 @@ declare const HoverCard: React$1.FC<HoverCardPrimitive.HoverCardProps>;
328
328
  declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<HoverCardPrimitive.HoverCardTriggerProps & React$1.RefAttributes<HTMLAnchorElement>>;
329
329
  declare const HoverCardContent: React$1.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
330
330
 
331
- declare const Breadcrumb: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
332
- separator?: React$1.ReactNode;
333
- } & React$1.RefAttributes<HTMLElement>>;
331
+ declare const breadcrumbVariants: (props?: ({
332
+ size?: "sm" | "md" | "lg" | null | undefined;
333
+ variant?: "bordered" | "default" | "filled" | null | undefined;
334
+ radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
335
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
336
+ interface BreadcrumbProps extends React$1.ComponentPropsWithoutRef<"nav">, VariantProps<typeof breadcrumbVariants> {
337
+ }
338
+ declare const Breadcrumb: React$1.ForwardRefExoticComponent<BreadcrumbProps & React$1.RefAttributes<HTMLElement>>;
334
339
  declare const BreadcrumbList: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "ref"> & React$1.RefAttributes<HTMLOListElement>>;
335
340
  declare const BreadcrumbItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
336
341
  declare const BreadcrumbLink: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & {
@@ -938,19 +943,15 @@ interface DotsProps extends React$1.HTMLAttributes<HTMLSpanElement>, VariantProp
938
943
  declare const Dots: React$1.ForwardRefExoticComponent<DotsProps & React$1.RefAttributes<HTMLSpanElement>>;
939
944
 
940
945
  declare const circularProgressVariants: (props?: ({
941
- size?: "sm" | "md" | "lg" | "xl" | null | undefined;
946
+ size?: "sm" | "md" | "lg" | null | undefined;
947
+ color?: "default" | "success" | "warning" | "danger" | null | undefined;
942
948
  } & class_variance_authority_types.ClassProp) | undefined) => string;
943
- interface CircularProgressProps extends React$1.SVGAttributes<SVGSVGElement>, VariantProps<typeof circularProgressVariants> {
944
- /** Progress value (0-100). If undefined, shows indeterminate spinner */
949
+ interface CircularProgressProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "color">, VariantProps<typeof circularProgressVariants> {
945
950
  value?: number;
946
- /** Stroke width of the progress circle */
947
- strokeWidth?: number;
948
- /** Whether to show the value label in the center */
949
951
  showValue?: boolean;
950
- /** Custom label to show instead of percentage */
951
- label?: string;
952
+ trackClassName?: string;
952
953
  }
953
- declare const CircularProgress: React$1.ForwardRefExoticComponent<CircularProgressProps & React$1.RefAttributes<SVGSVGElement>>;
954
+ declare const CircularProgress: React$1.ForwardRefExoticComponent<CircularProgressProps & React$1.RefAttributes<HTMLDivElement>>;
954
955
 
955
956
  declare const inputOTPVariants: (props?: ({
956
957
  size?: "sm" | "md" | "lg" | null | undefined;