@ambuj.bhaskar/react-component-library 0.31.4 → 0.31.6
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/assets/index.css +1 -1
- package/dist/index.cjs +113 -113
- package/dist/index.d.ts +3 -0
- package/dist/index.js +6952 -6924
- package/dist/index.umd.js +114 -114
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -844,6 +844,9 @@ export declare type FormGroupProps = {
|
|
|
844
844
|
edit?: boolean;
|
|
845
845
|
onAddClick?: (route: string) => void;
|
|
846
846
|
onDeleteClick?: (route: string) => void;
|
|
847
|
+
customButtons?: (route: string) => ReactNode | ReactNode[];
|
|
848
|
+
onChange?: (data: any) => void;
|
|
849
|
+
showErrors?: boolean;
|
|
847
850
|
};
|
|
848
851
|
|
|
849
852
|
export declare const Heatmap: React.FC<HeatmapProps>;
|