@tetrascience-npm/tetrascience-react-ui 0.5.0-beta.45.1 → 0.5.0-beta.46.1

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.ts CHANGED
@@ -368,7 +368,7 @@ export declare const buttonGroupVariants: (props?: ({
368
368
 
369
369
  export declare const buttonVariants: (props?: ({
370
370
  variant?: "link" | "default" | "outline" | "secondary" | "ghost" | "destructive" | null | undefined;
371
- size?: "default" | "icon" | "xs" | "sm" | "lg" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
371
+ size?: "default" | "sm" | "icon" | "xs" | "lg" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
372
372
  } & ClassProp) | undefined) => string;
373
373
 
374
374
  export declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, locale, formatters, components, ...props }: React_2.ComponentProps<typeof DayPicker> & {
@@ -1501,7 +1501,7 @@ declare const inputGroupAddonVariants: (props?: ({
1501
1501
  export declare function InputGroupButton({ className, type, variant, size, ...props }: Omit<React_2.ComponentProps<typeof Button>, "size"> & VariantProps<typeof inputGroupButtonVariants>): JSX.Element;
1502
1502
 
1503
1503
  declare const inputGroupButtonVariants: (props?: ({
1504
- size?: "xs" | "sm" | "icon-xs" | "icon-sm" | null | undefined;
1504
+ size?: "sm" | "xs" | "icon-xs" | "icon-sm" | null | undefined;
1505
1505
  } & ClassProp) | undefined) => string;
1506
1506
 
1507
1507
  export declare function InputGroupInput({ className, ...props }: React_2.ComponentProps<"input">): JSX.Element;
@@ -1550,7 +1550,7 @@ export declare function ItemTitle({ className, ...props }: React_2.ComponentProp
1550
1550
 
1551
1551
  declare const itemVariants: (props?: ({
1552
1552
  variant?: "default" | "outline" | "muted" | null | undefined;
1553
- size?: "default" | "xs" | "sm" | null | undefined;
1553
+ size?: "default" | "sm" | "xs" | null | undefined;
1554
1554
  } & ClassProp) | undefined) => string;
1555
1555
 
1556
1556
  export declare function Kbd({ className, ...props }: React.ComponentProps<"kbd">): JSX.Element;
@@ -2690,6 +2690,19 @@ export declare const spinnerVariants: (props?: ({
2690
2690
  size?: "default" | "sm" | "lg" | "md" | null | undefined;
2691
2691
  } & ClassProp) | undefined) => string;
2692
2692
 
2693
+ export declare function StatCard({ label, value, delta, deltaLabel, trend, description, className, ...props }: StatCardProps): JSX.Element;
2694
+
2695
+ export declare interface StatCardProps extends React_2.ComponentProps<"div"> {
2696
+ label: string;
2697
+ value: string | number;
2698
+ delta?: string | number;
2699
+ deltaLabel?: string;
2700
+ trend?: StatCardTrend;
2701
+ description?: string;
2702
+ }
2703
+
2704
+ export declare type StatCardTrend = "up" | "down" | "neutral";
2705
+
2693
2706
  /** Built-in Lucide spinner icons that pair well with ts-spin-pulse animation. */
2694
2707
  export declare const STREAM_STATUS_ICONS: {
2695
2708
  readonly loader: JSX.Element;