@selectwin/kit 0.1.13 → 0.1.15

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>;
@@ -9,6 +9,9 @@ type SelectKpiCardOwnProps = {
9
9
  * backlog". Omit for a neutral metric: a KPI that is always red stops meaning anything.
10
10
  */
11
11
  tone?: 'critical' | 'success' | 'caution';
12
+ /** Sem moldura (fundo/borda/padding) — o stat "nu" pra viver DENTRO de um card que já
13
+ * tem chrome próprio (ex.: grupo de métricas no body de um SelectChartCard). */
14
+ bare?: boolean;
12
15
  };
13
16
  export type SelectKpiCardProps = SelectKpiCardOwnProps & Omit<ComponentPropsWithoutRef<'div'>, keyof SelectKpiCardOwnProps>;
14
17
  export declare const SelectKpiCard: import('react').ForwardRefExoticComponent<SelectKpiCardOwnProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, keyof SelectKpiCardOwnProps> & import('react').RefAttributes<HTMLDivElement>>;