@reeverdev/ui 0.2.203 → 0.2.205

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
@@ -2343,7 +2343,8 @@ declare const loadingVariants: (props?: ({
2343
2343
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2344
2344
  interface LoadingProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof loadingVariants> {
2345
2345
  text?: string;
2346
- color?: "primary" | "secondary" | "muted";
2346
+ /** Color - semantic color or custom CSS color */
2347
+ color?: "primary" | "secondary" | "success" | "warning" | "danger" | "muted" | (string & {});
2347
2348
  }
2348
2349
  declare const Loading: React$1.ForwardRefExoticComponent<LoadingProps & React$1.RefAttributes<HTMLDivElement>>;
2349
2350
 
@@ -2528,7 +2529,7 @@ interface CloseButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElemen
2528
2529
  declare const CloseButton: React$1.ForwardRefExoticComponent<CloseButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
2529
2530
 
2530
2531
  declare const kbdVariants: (props?: ({
2531
- variant?: "bordered" | "default" | "ghost" | null | undefined;
2532
+ variant?: "bordered" | "flat" | "default" | null | undefined;
2532
2533
  size?: "sm" | "md" | "lg" | null | undefined;
2533
2534
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2534
2535
  interface KbdProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<typeof kbdVariants> {
package/dist/index.d.ts CHANGED
@@ -2343,7 +2343,8 @@ declare const loadingVariants: (props?: ({
2343
2343
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2344
2344
  interface LoadingProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof loadingVariants> {
2345
2345
  text?: string;
2346
- color?: "primary" | "secondary" | "muted";
2346
+ /** Color - semantic color or custom CSS color */
2347
+ color?: "primary" | "secondary" | "success" | "warning" | "danger" | "muted" | (string & {});
2347
2348
  }
2348
2349
  declare const Loading: React$1.ForwardRefExoticComponent<LoadingProps & React$1.RefAttributes<HTMLDivElement>>;
2349
2350
 
@@ -2528,7 +2529,7 @@ interface CloseButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElemen
2528
2529
  declare const CloseButton: React$1.ForwardRefExoticComponent<CloseButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
2529
2530
 
2530
2531
  declare const kbdVariants: (props?: ({
2531
- variant?: "bordered" | "default" | "ghost" | null | undefined;
2532
+ variant?: "bordered" | "flat" | "default" | null | undefined;
2532
2533
  size?: "sm" | "md" | "lg" | null | undefined;
2533
2534
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2534
2535
  interface KbdProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<typeof kbdVariants> {