@ambuj.bhaskar/react-component-library 0.31.1 → 0.31.3

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
@@ -883,6 +883,11 @@ export declare type HeatmapProps = {
883
883
  cellClassName?: string;
884
884
  xLabelFontSize?: CSSstring;
885
885
  yLabelFontSize?: CSSstring;
886
+ customLegends?: {
887
+ min: number;
888
+ max: number;
889
+ colorRange: Color[];
890
+ }[];
886
891
  };
887
892
 
888
893
  declare type HTMLButtonProps = ComponentProps<"button">;
@@ -1060,6 +1065,7 @@ export declare type MonthPickerProps = {
1060
1065
  onChange: (date: [Date | null, Date | null] | null) => void;
1061
1066
  value?: [Date | null, Date | null] | null;
1062
1067
  format?: string;
1068
+ allowClear?: boolean;
1063
1069
  className?: string;
1064
1070
  popupClassName?: string;
1065
1071
  };