@ambuj.bhaskar/react-component-library 0.30.3 → 0.30.5

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
@@ -989,6 +989,7 @@ declare type FormConfigLeaf = FormConfigLevel & {
989
989
  defaultValue?: any;
990
990
  min?: number;
991
991
  max?: number;
992
+ step?: number;
992
993
  values?: any[];
993
994
  options?: {
994
995
  label: string;
@@ -1030,6 +1031,9 @@ export declare type FormGroupProps = {
1030
1031
  };
1031
1032
  defaultValues?: Record<string, any>;
1032
1033
  className?: string;
1034
+ edit?: boolean;
1035
+ onAddClick?: (route: string) => void;
1036
+ onDeleteClick?: (route: string) => void;
1033
1037
  };
1034
1038
 
1035
1039
  export declare const Heatmap: React.FC<HeatmapProps>;