@selectwin/kit 0.1.13 → 0.1.14

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.
@@ -15,6 +15,9 @@ type SelectChartCardOwnProps = {
15
15
  * their container (line/area/donut) DO need a number; that's why it stays the default.
16
16
  */
17
17
  height?: number | 'auto';
18
+ /** Zero body padding — for full-bleed content that draws its own rows/padding
19
+ * (e.g. a SelectDetailList rendered as an internal table). */
20
+ flush?: boolean;
18
21
  children: ReactNode;
19
22
  };
20
23
  export type SelectChartCardProps = SelectChartCardOwnProps & Omit<ComponentPropsWithoutRef<'div'>, keyof SelectChartCardOwnProps>;