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 +3 -2
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/src/components/Popover/Popover.d.ts +3 -2
- package/package.json +1 -1
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
|
|
696
|
+
header?: string;
|
|
697
|
+
headerContent?: ReactNode;
|
|
697
698
|
sliderLabels: string[];
|
|
698
|
-
blocks
|
|
699
|
+
blocks?: Block[];
|
|
699
700
|
children?: ReactNode | string;
|
|
700
701
|
toggleOpen: (val: boolean) => void;
|
|
701
702
|
};
|