@reeverdev/ui 0.1.10 → 0.1.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.
package/dist/index.d.cts CHANGED
@@ -60,7 +60,7 @@ declare const Badge: React$1.ForwardRefExoticComponent<BadgeProps & React$1.RefA
60
60
 
61
61
  declare const buttonVariants: (props?: ({
62
62
  variant?: "solid" | "ghost" | "flat" | "bordered" | "light" | null | undefined;
63
- color?: "default" | "primary" | "secondary" | "success" | "warning" | "danger" | null | undefined;
63
+ color?: "default" | "success" | "warning" | "danger" | null | undefined;
64
64
  size?: "sm" | "md" | "lg" | "icon" | null | undefined;
65
65
  radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
66
66
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -68,7 +68,6 @@ interface ButtonProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElemen
68
68
  asChild?: boolean;
69
69
  href?: string;
70
70
  loading?: boolean;
71
- loadingText?: string;
72
71
  }
73
72
  declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
74
73
 
@@ -810,7 +809,7 @@ declare const SidebarMenuSubButton: React$1.ForwardRefExoticComponent<Omit<React
810
809
 
811
810
  declare const chipVariants: (props?: ({
812
811
  variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | null | undefined;
813
- color?: "primary" | "secondary" | "success" | "warning" | "danger" | "info" | null | undefined;
812
+ color?: "success" | "warning" | "danger" | "primary" | "secondary" | "info" | null | undefined;
814
813
  size?: "sm" | "md" | "lg" | null | undefined;
815
814
  radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
816
815
  clickable?: boolean | null | undefined;
@@ -1783,7 +1782,7 @@ interface LoadingOverlayProps extends React$1.HTMLAttributes<HTMLDivElement>, Va
1783
1782
  declare const LoadingOverlay: React$1.ForwardRefExoticComponent<LoadingOverlayProps & React$1.RefAttributes<HTMLDivElement>>;
1784
1783
 
1785
1784
  declare const nprogressVariants: (props?: ({
1786
- color?: "primary" | "secondary" | "success" | "warning" | "danger" | "info" | null | undefined;
1785
+ color?: "success" | "warning" | "danger" | "primary" | "secondary" | "info" | null | undefined;
1787
1786
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1788
1787
  interface NProgressProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "color">, VariantProps<typeof nprogressVariants> {
1789
1788
  isLoading?: boolean;
@@ -2088,7 +2087,7 @@ declare const CloseButton: React$1.ForwardRefExoticComponent<CloseButtonProps &
2088
2087
  declare const actionIconVariants: (props?: ({
2089
2088
  variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | null | undefined;
2090
2089
  size?: "sm" | "md" | "lg" | null | undefined;
2091
- color?: "default" | "primary" | "secondary" | "success" | "warning" | "danger" | null | undefined;
2090
+ color?: "default" | "success" | "warning" | "danger" | "primary" | "secondary" | null | undefined;
2092
2091
  radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
2093
2092
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2094
2093
  interface ActionIconProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "color">, VariantProps<typeof actionIconVariants> {
@@ -2108,7 +2107,7 @@ interface PortalProps {
2108
2107
  declare const Portal: React$1.FC<PortalProps>;
2109
2108
 
2110
2109
  declare const indicatorVariants: (props?: ({
2111
- color?: "default" | "primary" | "secondary" | "success" | "warning" | "danger" | null | undefined;
2110
+ color?: "default" | "success" | "warning" | "danger" | "primary" | "secondary" | null | undefined;
2112
2111
  size?: "sm" | "md" | "lg" | null | undefined;
2113
2112
  position?: "top-right" | "top-left" | "bottom-right" | "bottom-left" | null | undefined;
2114
2113
  ping?: boolean | null | undefined;
@@ -3454,7 +3453,7 @@ interface NotificationCenterProps extends VariantProps<typeof notificationCenter
3454
3453
  declare const NotificationCenter: React$1.ForwardRefExoticComponent<NotificationCenterProps & React$1.RefAttributes<HTMLButtonElement>>;
3455
3454
 
3456
3455
  declare const announcementBannerVariants: (props?: ({
3457
- variant?: "default" | "primary" | "success" | "warning" | "danger" | "info" | "gradient" | null | undefined;
3456
+ variant?: "default" | "success" | "warning" | "danger" | "primary" | "info" | "gradient" | null | undefined;
3458
3457
  position?: "top" | "relative" | null | undefined;
3459
3458
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3460
3459
  interface AnnouncementBannerProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof announcementBannerVariants> {
@@ -3595,7 +3594,7 @@ declare const swipeActionsVariants: (props?: ({
3595
3594
  variant?: "default" | "card" | null | undefined;
3596
3595
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3597
3596
  declare const swipeActionVariants: (props?: ({
3598
- variant?: "primary" | "secondary" | "success" | "warning" | "danger" | "info" | null | undefined;
3597
+ variant?: "success" | "warning" | "danger" | "primary" | "secondary" | "info" | null | undefined;
3599
3598
  size?: "sm" | "md" | "lg" | null | undefined;
3600
3599
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3601
3600
  interface SwipeAction {
package/dist/index.d.ts CHANGED
@@ -60,7 +60,7 @@ declare const Badge: React$1.ForwardRefExoticComponent<BadgeProps & React$1.RefA
60
60
 
61
61
  declare const buttonVariants: (props?: ({
62
62
  variant?: "solid" | "ghost" | "flat" | "bordered" | "light" | null | undefined;
63
- color?: "default" | "primary" | "secondary" | "success" | "warning" | "danger" | null | undefined;
63
+ color?: "default" | "success" | "warning" | "danger" | null | undefined;
64
64
  size?: "sm" | "md" | "lg" | "icon" | null | undefined;
65
65
  radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
66
66
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -68,7 +68,6 @@ interface ButtonProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElemen
68
68
  asChild?: boolean;
69
69
  href?: string;
70
70
  loading?: boolean;
71
- loadingText?: string;
72
71
  }
73
72
  declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
74
73
 
@@ -810,7 +809,7 @@ declare const SidebarMenuSubButton: React$1.ForwardRefExoticComponent<Omit<React
810
809
 
811
810
  declare const chipVariants: (props?: ({
812
811
  variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | null | undefined;
813
- color?: "primary" | "secondary" | "success" | "warning" | "danger" | "info" | null | undefined;
812
+ color?: "success" | "warning" | "danger" | "primary" | "secondary" | "info" | null | undefined;
814
813
  size?: "sm" | "md" | "lg" | null | undefined;
815
814
  radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
816
815
  clickable?: boolean | null | undefined;
@@ -1783,7 +1782,7 @@ interface LoadingOverlayProps extends React$1.HTMLAttributes<HTMLDivElement>, Va
1783
1782
  declare const LoadingOverlay: React$1.ForwardRefExoticComponent<LoadingOverlayProps & React$1.RefAttributes<HTMLDivElement>>;
1784
1783
 
1785
1784
  declare const nprogressVariants: (props?: ({
1786
- color?: "primary" | "secondary" | "success" | "warning" | "danger" | "info" | null | undefined;
1785
+ color?: "success" | "warning" | "danger" | "primary" | "secondary" | "info" | null | undefined;
1787
1786
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1788
1787
  interface NProgressProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "color">, VariantProps<typeof nprogressVariants> {
1789
1788
  isLoading?: boolean;
@@ -2088,7 +2087,7 @@ declare const CloseButton: React$1.ForwardRefExoticComponent<CloseButtonProps &
2088
2087
  declare const actionIconVariants: (props?: ({
2089
2088
  variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | null | undefined;
2090
2089
  size?: "sm" | "md" | "lg" | null | undefined;
2091
- color?: "default" | "primary" | "secondary" | "success" | "warning" | "danger" | null | undefined;
2090
+ color?: "default" | "success" | "warning" | "danger" | "primary" | "secondary" | null | undefined;
2092
2091
  radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
2093
2092
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2094
2093
  interface ActionIconProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "color">, VariantProps<typeof actionIconVariants> {
@@ -2108,7 +2107,7 @@ interface PortalProps {
2108
2107
  declare const Portal: React$1.FC<PortalProps>;
2109
2108
 
2110
2109
  declare const indicatorVariants: (props?: ({
2111
- color?: "default" | "primary" | "secondary" | "success" | "warning" | "danger" | null | undefined;
2110
+ color?: "default" | "success" | "warning" | "danger" | "primary" | "secondary" | null | undefined;
2112
2111
  size?: "sm" | "md" | "lg" | null | undefined;
2113
2112
  position?: "top-right" | "top-left" | "bottom-right" | "bottom-left" | null | undefined;
2114
2113
  ping?: boolean | null | undefined;
@@ -3454,7 +3453,7 @@ interface NotificationCenterProps extends VariantProps<typeof notificationCenter
3454
3453
  declare const NotificationCenter: React$1.ForwardRefExoticComponent<NotificationCenterProps & React$1.RefAttributes<HTMLButtonElement>>;
3455
3454
 
3456
3455
  declare const announcementBannerVariants: (props?: ({
3457
- variant?: "default" | "primary" | "success" | "warning" | "danger" | "info" | "gradient" | null | undefined;
3456
+ variant?: "default" | "success" | "warning" | "danger" | "primary" | "info" | "gradient" | null | undefined;
3458
3457
  position?: "top" | "relative" | null | undefined;
3459
3458
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3460
3459
  interface AnnouncementBannerProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof announcementBannerVariants> {
@@ -3595,7 +3594,7 @@ declare const swipeActionsVariants: (props?: ({
3595
3594
  variant?: "default" | "card" | null | undefined;
3596
3595
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3597
3596
  declare const swipeActionVariants: (props?: ({
3598
- variant?: "primary" | "secondary" | "success" | "warning" | "danger" | "info" | null | undefined;
3597
+ variant?: "success" | "warning" | "danger" | "primary" | "secondary" | "info" | null | undefined;
3599
3598
  size?: "sm" | "md" | "lg" | null | undefined;
3600
3599
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3601
3600
  interface SwipeAction {