@rafal.lemieszewski/tide-ui 0.11.0 → 0.12.0

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.
@@ -8,13 +8,15 @@ export declare const chartColorSchemes: {
8
8
  export type ChartType = "bar" | "horizontal-bar" | "line" | "scatter" | "composed";
9
9
  export type ChartColorScheme = keyof typeof chartColorSchemes;
10
10
  export interface ChartDataPoint {
11
- [key: string]: string | number;
11
+ [key: string]: string | number | number[];
12
12
  }
13
13
  export interface ChartConfig {
14
14
  [key: string]: {
15
15
  label: string;
16
16
  color?: string;
17
- type?: "bar" | "line" | "area";
17
+ type?: "bar" | "line" | "area" | "range-area";
18
+ stroke?: string;
19
+ fill?: string;
18
20
  };
19
21
  }
20
22
  export interface ChartMargin {