@conboai/storybook.components 0.4.25 → 0.4.28

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,6 +22,7 @@ export interface ImagePlayerProps {
22
22
  fetchFrameDetails?: (snapshot: Snapshot) => void;
23
23
  delay?: string;
24
24
  onClear?: () => void;
25
+ showDirection?: boolean;
25
26
  }
26
27
  declare const ImagePlayer: React.FC<ImagePlayerProps>;
27
28
  export default ImagePlayer;
@@ -19,6 +19,7 @@ export type PollutionColors = "red" | "green" | "yellow";
19
19
  export type Pollution = {
20
20
  id: string;
21
21
  value: PollutionColors;
22
+ text: string;
22
23
  };
23
24
  export declare enum PollutionBgColors {
24
25
  red = "#EB5757",