@selectwin/kit 0.1.23 → 0.1.25

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,10 @@ type SelectHeatmapOwnProps = {
24
24
  * young cohort with only M0) doesn't smear one cell across the whole card. Wide grids
25
25
  * (day×hour) are unaffected — their cells never reach the cap. Default 96. */
26
26
  maxCellSize?: number;
27
+ /** Cell height in px. Default 30 (dense grids like day×hour). Cohort-style grids that
28
+ * print money/percent INSIDE the cell read better at 40+ — from 40 up the value font
29
+ * scales up automatically. */
30
+ cellHeight?: number;
27
31
  };
28
32
  export type SelectHeatmapProps = SelectHeatmapOwnProps & Omit<ComponentPropsWithoutRef<'div'>, keyof SelectHeatmapOwnProps>;
29
33
  export declare const SelectHeatmap: import('react').ForwardRefExoticComponent<SelectHeatmapOwnProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, keyof SelectHeatmapOwnProps> & import('react').RefAttributes<HTMLDivElement>>;