searchsmartly-ui 0.0.145 → 0.0.147

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
@@ -693,9 +693,10 @@ declare const SliderChart: FC<SliderChartProps>;
693
693
  type PopoverProps = {
694
694
  open: boolean;
695
695
  disableSlider?: boolean;
696
- header: string;
696
+ header?: string;
697
+ headerContent?: ReactNode;
697
698
  sliderLabels: string[];
698
- blocks: Block[];
699
+ blocks?: Block[];
699
700
  children?: ReactNode | string;
700
701
  toggleOpen: (val: boolean) => void;
701
702
  };