@rafal.lemieszewski/tide-ui 0.41.1 → 0.41.3

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.
@@ -22,8 +22,8 @@ export type { LabelProps } from './ui/label';
22
22
  export { ScrollArea, ScrollBar } from './ui/scroll-area';
23
23
  export { Separator } from './ui/separator';
24
24
  export { Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonTable, skeletonVariants } from './ui/skeleton';
25
- export { Status, statusConfig } from './ui/status';
26
- export type { StatusProps, StatusValue, StatusConfig } from './ui/status';
25
+ export { FixtureStatus, statusConfig } from './ui/fixture-status';
26
+ export type { FixtureStatusProps, StatusValue, StatusConfig } from './ui/fixture-status';
27
27
  export { Switch } from './ui/switch';
28
28
  export { Textarea } from './ui/textarea';
29
29
  export type { TextareaProps } from './ui/textarea';
@@ -14,9 +14,9 @@ declare const textSizeClasses: {
14
14
  readonly lg: "text-body-medium-lg";
15
15
  };
16
16
  type StatusSize = keyof typeof textSizeClasses;
17
- export interface StatusProps extends React.HTMLAttributes<HTMLDivElement> {
17
+ export interface FixtureStatusProps extends React.HTMLAttributes<HTMLDivElement> {
18
18
  /** The status value (e.g., "order-draft", "negotiation-firm-offer") */
19
- status: StatusValue;
19
+ value: StatusValue;
20
20
  /** Size variant */
21
21
  size?: StatusSize;
22
22
  /** Whether to show the object prefix in the label (e.g., "Order • Draft" vs "Draft") */
@@ -24,6 +24,6 @@ export interface StatusProps extends React.HTMLAttributes<HTMLDivElement> {
24
24
  /** Whether the label color should match the icon color (default: true) */
25
25
  coloredLabel?: boolean;
26
26
  }
27
- declare const Status: React.ForwardRefExoticComponent<StatusProps & React.RefAttributes<HTMLDivElement>>;
28
- export { Status, statusConfig };
27
+ declare const FixtureStatus: React.ForwardRefExoticComponent<FixtureStatusProps & React.RefAttributes<HTMLDivElement>>;
28
+ export { FixtureStatus, statusConfig };
29
29
  export type { StatusConfig };