@conboai/storybook.components 0.5.48 → 0.5.50
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.
|
@@ -24,6 +24,7 @@ export interface CustomDataGridProps {
|
|
|
24
24
|
csvDataFormatter?: (value: any, column: GridColDef) => string;
|
|
25
25
|
useClientSorting?: boolean;
|
|
26
26
|
isShapeSelection?: boolean;
|
|
27
|
+
infoText?: string;
|
|
27
28
|
}
|
|
28
29
|
declare const CustomDataGrid: FC<CustomDataGridProps>;
|
|
29
30
|
export default CustomDataGrid;
|
|
@@ -3,12 +3,12 @@ import { default as icons } from './icons';
|
|
|
3
3
|
|
|
4
4
|
interface ISvg {
|
|
5
5
|
fill?: string;
|
|
6
|
-
icon
|
|
6
|
+
icon?: keyof typeof icons;
|
|
7
7
|
width?: number;
|
|
8
8
|
height?: number;
|
|
9
9
|
fillOpacity?: string;
|
|
10
10
|
className?: string;
|
|
11
11
|
customPaths?: string[];
|
|
12
12
|
}
|
|
13
|
-
declare function Svg({ fill, icon, width, height, fillOpacity, className, customPaths }: ISvg): React.JSX.Element;
|
|
13
|
+
declare function Svg({ fill, icon, width, height, fillOpacity, className, customPaths, }: ISvg): React.JSX.Element;
|
|
14
14
|
export default Svg;
|