@aic-kits/react 0.29.12 → 0.31.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.
@@ -0,0 +1,90 @@
1
+ import { default as React } from 'react';
2
+ import { Color } from '../../theme/common';
3
+ import { BarChartSize as ThemeBarChartSize, BarChartVariant as ThemeBarChartVariant } from '../../theme/components/barChart';
4
+ import { WithResponsiveValue } from '../../utils/responsiveness';
5
+ import { BoxProps } from '../Box';
6
+ export interface BarData {
7
+ label: string;
8
+ value: number;
9
+ color?: Color;
10
+ }
11
+ export interface BarChartProps extends Omit<BoxProps, 'size'> {
12
+ /**
13
+ * Array of data points for the bar chart
14
+ */
15
+ data: BarData[];
16
+ /**
17
+ * Width of the chart - can be a number (pixels), string ('100px', 'auto', '100%'), or responsive values
18
+ * When set, acts as maxWidth for responsive behavior
19
+ * @default 400
20
+ */
21
+ width?: WithResponsiveValue<number | string>;
22
+ /**
23
+ * Minimum width of the chart
24
+ * @default 200
25
+ */
26
+ minWidth?: WithResponsiveValue<number | string>;
27
+ /**
28
+ * Maximum width of the chart (if not set, width prop is used as maxWidth)
29
+ */
30
+ maxWidth?: WithResponsiveValue<number | string>;
31
+ /**
32
+ * Height of the chart in pixels or string
33
+ * @default 300
34
+ */
35
+ height?: WithResponsiveValue<number | string>;
36
+ /**
37
+ * Chart margins around the content
38
+ * @default { top: 20, right: 20, bottom: 40, left: 40 }
39
+ */
40
+ chartMargin?: {
41
+ top?: number;
42
+ right?: number;
43
+ bottom?: number;
44
+ left?: number;
45
+ };
46
+ /**
47
+ * The default color for bars. Can be overridden per bar in data
48
+ */
49
+ color?: Color;
50
+ /**
51
+ * The size preset for the chart
52
+ * @default 'md'
53
+ */
54
+ size?: ThemeBarChartSize;
55
+ /**
56
+ * The visual variant of the bar chart
57
+ * @default 'default'
58
+ */
59
+ variant?: ThemeBarChartVariant;
60
+ /**
61
+ * Show grid lines
62
+ * @default true
63
+ */
64
+ showGrid?: boolean;
65
+ /**
66
+ * Show X axis
67
+ * @default true
68
+ */
69
+ showXAxis?: boolean;
70
+ /**
71
+ * Show Y axis
72
+ * @default true
73
+ */
74
+ showYAxis?: boolean;
75
+ /**
76
+ * Orientation of the chart
77
+ * @default 'vertical'
78
+ */
79
+ orientation?: 'vertical' | 'horizontal';
80
+ /**
81
+ * Animation duration in milliseconds
82
+ * @default 300
83
+ */
84
+ animationDuration?: number;
85
+ /**
86
+ * Test ID for automation
87
+ */
88
+ testID?: string;
89
+ }
90
+ export declare const BarChart: React.FC<BarChartProps>;
@@ -0,0 +1,33 @@
1
+ import { Color } from '../../theme/common';
2
+ import { WithResponsiveValue } from '../../utils/responsiveness';
3
+ interface StyledBarProps {
4
+ $colorKey: Color;
5
+ $animationDuration: number;
6
+ }
7
+ interface StyledAxisLineProps {
8
+ $colorKey: Color | string;
9
+ }
10
+ interface StyledAxisLabelProps {
11
+ $colorKey: Color | string;
12
+ }
13
+ interface StyledGridLineProps {
14
+ $colorKey: Color | string;
15
+ }
16
+ export declare const StyledBarChartContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('..').BoxProps & {
17
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
18
+ }, {
19
+ $width?: WithResponsiveValue<number | string>;
20
+ $minWidth?: WithResponsiveValue<number | string>;
21
+ $maxWidth?: WithResponsiveValue<number | string>;
22
+ }>> & string & Omit<(props: import('..').BoxProps & {
23
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
24
+ }) => ReturnType<({ children, style, "data-testid": testId, ...otherProps }: import('..').BoxProps, ref: import('react').ForwardedRef<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element>, keyof import('react').Component<any, {}, any>>;
25
+ export declare const StyledBarChartSvg: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').SVGProps<SVGSVGElement>, {
26
+ $width?: number | string;
27
+ $height?: number;
28
+ }>> & string;
29
+ export declare const StyledBar: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').SVGProps<SVGRectElement>, StyledBarProps>> & string;
30
+ export declare const StyledAxisLine: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').SVGLineElementAttributes<SVGLineElement>, StyledAxisLineProps>> & string;
31
+ export declare const StyledAxisLabel: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').SVGTextElementAttributes<SVGTextElement>, StyledAxisLabelProps>> & string;
32
+ export declare const StyledGridLine: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').SVGLineElementAttributes<SVGLineElement>, StyledGridLineProps>> & string;
33
+ export {};
@@ -0,0 +1 @@
1
+ export * from './BarChart';
@@ -0,0 +1,123 @@
1
+ import { Color } from '../../theme/common';
2
+ import { LineChartSize as ThemeLineChartSize, LineChartVariant as ThemeLineChartVariant, LineChartCurve } from '../../theme/components/lineChart';
3
+ import { WithResponsiveValue } from '../../utils/responsiveness';
4
+ import { BoxProps } from '../Box';
5
+ import * as React from 'react';
6
+ export interface LineDataPoint {
7
+ x: number | string;
8
+ y: number;
9
+ }
10
+ export interface LineSeries {
11
+ id: string;
12
+ label: string;
13
+ data: LineDataPoint[];
14
+ color?: Color;
15
+ showDots?: boolean;
16
+ showArea?: boolean;
17
+ strokeDasharray?: string;
18
+ strokeWidth?: number;
19
+ }
20
+ export interface LineChartProps extends Omit<BoxProps, 'size'> {
21
+ /**
22
+ * Array of line series to display
23
+ */
24
+ series: LineSeries[];
25
+ /**
26
+ * Width of the chart - can be a number (pixels), string ('100px', 'auto', '100%'), or responsive values
27
+ * When set, acts as maxWidth for responsive behavior
28
+ * @default 600
29
+ */
30
+ width?: WithResponsiveValue<number | string>;
31
+ /**
32
+ * Minimum width of the chart
33
+ * @default 300
34
+ */
35
+ minWidth?: WithResponsiveValue<number | string>;
36
+ /**
37
+ * Maximum width of the chart (if not set, width prop is used as maxWidth)
38
+ */
39
+ maxWidth?: WithResponsiveValue<number | string>;
40
+ /**
41
+ * Height of the chart - can be a number (pixels), string ('100px', 'auto', '100%'), or responsive values
42
+ * When set, acts as maxHeight for responsive behavior
43
+ * @default 400
44
+ */
45
+ height?: WithResponsiveValue<number | string>;
46
+ /**
47
+ * Minimum height of the chart
48
+ * @default 300
49
+ */
50
+ minHeight?: WithResponsiveValue<number | string>;
51
+ /**
52
+ * Maximum height of the chart (if not set, height prop is used as maxHeight)
53
+ */
54
+ maxHeight?: WithResponsiveValue<number | string>;
55
+ /**
56
+ * Chart margins around the content
57
+ * @default { top: 20, right: 20, bottom: 40, left: 50 }
58
+ */
59
+ chartMargin?: {
60
+ top?: number;
61
+ right?: number;
62
+ bottom?: number;
63
+ left?: number;
64
+ };
65
+ /**
66
+ * The size preset for the chart
67
+ * @default 'md'
68
+ */
69
+ size?: ThemeLineChartSize;
70
+ /**
71
+ * The visual variant of the line chart
72
+ * @default 'default'
73
+ */
74
+ variant?: ThemeLineChartVariant;
75
+ /**
76
+ * Show grid lines
77
+ * @default true
78
+ */
79
+ showGrid?: boolean;
80
+ /**
81
+ * Show X axis
82
+ * @default true
83
+ */
84
+ showXAxis?: boolean;
85
+ /**
86
+ * Show Y axis
87
+ * @default true
88
+ */
89
+ showYAxis?: boolean;
90
+ /**
91
+ * Show legend
92
+ * @default true
93
+ */
94
+ showLegend?: boolean;
95
+ /**
96
+ * Legend position
97
+ * @default 'top'
98
+ */
99
+ legendPosition?: 'top' | 'right' | 'bottom' | 'left';
100
+ /**
101
+ * Curve type for lines
102
+ * @default 'linear'
103
+ */
104
+ curve?: LineChartCurve;
105
+ /**
106
+ * Animation duration in milliseconds
107
+ * @default 500
108
+ */
109
+ animationDuration?: number;
110
+ /**
111
+ * X axis labels (optional, will use data x values if not provided)
112
+ */
113
+ xAxisLabels?: string[];
114
+ /**
115
+ * Y axis domain [min, max] (optional, will auto-calculate if not provided)
116
+ */
117
+ yDomain?: [number, number];
118
+ /**
119
+ * Test ID for automation
120
+ */
121
+ testID?: string;
122
+ }
123
+ export declare const LineChart: React.FC<LineChartProps>;
@@ -0,0 +1,91 @@
1
+ import { Color } from '../../theme/common';
2
+ import { WithResponsiveValue } from '../../utils/responsiveness';
3
+ interface StyledLineProps {
4
+ $colorKey: Color;
5
+ $strokeWidth: number;
6
+ $strokeDasharray?: string;
7
+ $animationDuration: number;
8
+ }
9
+ interface StyledAreaProps {
10
+ $colorKey: Color;
11
+ $animationDuration: number;
12
+ }
13
+ interface StyledDotProps {
14
+ $colorKey: Color;
15
+ $animationDuration: number;
16
+ }
17
+ interface StyledAxisLineProps {
18
+ $colorKey: Color | string;
19
+ }
20
+ interface StyledAxisLabelProps {
21
+ $colorKey: Color | string;
22
+ $fontSize: number;
23
+ }
24
+ interface StyledGridLineProps {
25
+ $colorKey: Color | string;
26
+ }
27
+ interface StyledLegendContainerProps {
28
+ $position: 'top' | 'right' | 'bottom' | 'left';
29
+ $spacing: number;
30
+ }
31
+ interface StyledLegendItemProps {
32
+ $spacing: number;
33
+ }
34
+ interface StyledLegendLineProps {
35
+ $colorKey: Color;
36
+ $strokeWidth: number;
37
+ $strokeDasharray?: string;
38
+ }
39
+ interface StyledLegendTextProps {
40
+ $fontSize: number;
41
+ $colorKey: Color | string;
42
+ }
43
+ export declare const StyledLineChartContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('..').BoxProps & {
44
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
45
+ }, {
46
+ $width?: WithResponsiveValue<number | string>;
47
+ $minWidth?: WithResponsiveValue<number | string>;
48
+ $maxWidth?: WithResponsiveValue<number | string>;
49
+ $height?: WithResponsiveValue<number | string>;
50
+ $minHeight?: WithResponsiveValue<number | string>;
51
+ $maxHeight?: WithResponsiveValue<number | string>;
52
+ }>> & string & Omit<(props: import('..').BoxProps & {
53
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
54
+ }) => ReturnType<({ children, style, "data-testid": testId, ...otherProps }: import('..').BoxProps, ref: import('react').ForwardedRef<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element>, keyof import('react').Component<any, {}, any>>;
55
+ export declare const StyledLineChartSvg: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').SVGProps<SVGSVGElement>, {
56
+ $width?: number | string;
57
+ $height?: number;
58
+ }>> & string;
59
+ export declare const StyledLine: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').SVGProps<SVGPathElement>, StyledLineProps>> & string;
60
+ export declare const StyledArea: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').SVGProps<SVGPathElement>, StyledAreaProps>> & string;
61
+ export declare const StyledDot: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').SVGProps<SVGCircleElement>, StyledDotProps>> & string;
62
+ export declare const StyledAxisLine: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').SVGLineElementAttributes<SVGLineElement>, StyledAxisLineProps>> & string;
63
+ export declare const StyledAxisLabel: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').SVGTextElementAttributes<SVGTextElement>, StyledAxisLabelProps>> & string;
64
+ export declare const StyledGridLine: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').SVGLineElementAttributes<SVGLineElement>, StyledGridLineProps>> & string;
65
+ export declare const StyledLegendContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('..').BoxProps & {
66
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
67
+ }, StyledLegendContainerProps>> & string & Omit<(props: import('..').BoxProps & {
68
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
69
+ }) => ReturnType<({ children, style, "data-testid": testId, ...otherProps }: import('..').BoxProps, ref: import('react').ForwardedRef<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element>, keyof import('react').Component<any, {}, any>>;
70
+ export declare const StyledLegendItem: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('..').BoxProps & {
71
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
72
+ }, StyledLegendItemProps>> & string & Omit<(props: import('..').BoxProps & {
73
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
74
+ }) => ReturnType<({ children, style, "data-testid": testId, ...otherProps }: import('..').BoxProps, ref: import('react').ForwardedRef<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element>, keyof import('react').Component<any, {}, any>>;
75
+ export declare const StyledLegendLine: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('..').BoxProps & {
76
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
77
+ }, StyledLegendLineProps>> & string & Omit<(props: import('..').BoxProps & {
78
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
79
+ }) => ReturnType<({ children, style, "data-testid": testId, ...otherProps }: import('..').BoxProps, ref: import('react').ForwardedRef<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element>, keyof import('react').Component<any, {}, any>>;
80
+ export declare const StyledLegendText: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, StyledLegendTextProps>> & string;
81
+ export declare const StyledTooltip: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('..').BoxProps & {
82
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
83
+ }, never>> & string & Omit<(props: import('..').BoxProps & {
84
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
85
+ }) => ReturnType<({ children, style, "data-testid": testId, ...otherProps }: import('..').BoxProps, ref: import('react').ForwardedRef<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element>, keyof import('react').Component<any, {}, any>>;
86
+ export declare const StyledTooltipContent: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('..').BoxProps & {
87
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
88
+ }, never>> & string & Omit<(props: import('..').BoxProps & {
89
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
90
+ }) => ReturnType<({ children, style, "data-testid": testId, ...otherProps }: import('..').BoxProps, ref: import('react').ForwardedRef<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element>, keyof import('react').Component<any, {}, any>>;
91
+ export {};
@@ -0,0 +1 @@
1
+ export * from './LineChart';
@@ -0,0 +1,105 @@
1
+ import { default as React } from 'react';
2
+ import { Color } from '../../theme/common';
3
+ import { PieChartSize as ThemePieChartSize, PieChartVariant as ThemePieChartVariant } from '../../theme/components/pieChart';
4
+ import { WithResponsiveValue } from '../../utils/responsiveness';
5
+ import { BoxProps } from '../Box';
6
+ export interface PieData {
7
+ label: string;
8
+ value: number;
9
+ color?: Color;
10
+ }
11
+ export interface PieChartProps extends Omit<BoxProps, 'size'> {
12
+ /**
13
+ * Array of data points for the pie chart
14
+ */
15
+ data: PieData[];
16
+ /**
17
+ * Width of the chart - can be a number (pixels), string ('100px', 'auto', '100%'), or responsive values
18
+ * When set, acts as maxWidth for responsive behavior
19
+ * @default 400
20
+ */
21
+ width?: WithResponsiveValue<number | string>;
22
+ /**
23
+ * Height of the chart in pixels or string
24
+ * @default 400
25
+ */
26
+ height?: WithResponsiveValue<number | string>;
27
+ /**
28
+ * Minimum width of the chart
29
+ * @default 200
30
+ */
31
+ minWidth?: WithResponsiveValue<number | string>;
32
+ /**
33
+ * Maximum width of the chart (if not set, width prop is used as maxWidth)
34
+ */
35
+ maxWidth?: WithResponsiveValue<number | string>;
36
+ /**
37
+ * Minimum height of the chart
38
+ * @default 200
39
+ */
40
+ minHeight?: WithResponsiveValue<number | string>;
41
+ /**
42
+ * Maximum height of the chart (if not set, height prop is used as maxHeight)
43
+ */
44
+ maxHeight?: WithResponsiveValue<number | string>;
45
+ /**
46
+ * Inner radius for donut chart (0-1 as percentage of radius)
47
+ * @default 0
48
+ */
49
+ innerRadius?: number;
50
+ /**
51
+ * Outer radius in pixels
52
+ * @default calculated from width/height
53
+ */
54
+ outerRadius?: number;
55
+ /**
56
+ * Padding angle between slices in degrees
57
+ * @default 0
58
+ */
59
+ padAngle?: number;
60
+ /**
61
+ * Corner radius for slices
62
+ * @default 0
63
+ */
64
+ cornerRadius?: number;
65
+ /**
66
+ * The size preset for the chart
67
+ * @default 'md'
68
+ */
69
+ size?: ThemePieChartSize;
70
+ /**
71
+ * The visual variant of the pie chart
72
+ * @default 'default'
73
+ */
74
+ variant?: ThemePieChartVariant;
75
+ /**
76
+ * Show labels on slices
77
+ * @default false
78
+ */
79
+ showLabels?: boolean;
80
+ /**
81
+ * Show legend
82
+ * @default true
83
+ */
84
+ showLegend?: boolean;
85
+ /**
86
+ * Legend position
87
+ * @default 'right'
88
+ */
89
+ legendPosition?: 'top' | 'right' | 'bottom' | 'left';
90
+ /**
91
+ * Animation duration in milliseconds
92
+ * @default 300
93
+ */
94
+ animationDuration?: number;
95
+ /**
96
+ * Start angle in degrees
97
+ * @default -90
98
+ */
99
+ startAngle?: number;
100
+ /**
101
+ * Test ID for automation
102
+ */
103
+ testID?: string;
104
+ }
105
+ export declare const PieChart: React.FC<PieChartProps>;
@@ -0,0 +1,67 @@
1
+ import { Color } from '../../theme/common';
2
+ import { WithResponsiveValue } from '../../utils/responsiveness';
3
+ interface StyledPieSliceProps {
4
+ $colorKey: Color;
5
+ $strokeWidth: number;
6
+ $strokeColorKey: Color | string;
7
+ $animationDuration: number;
8
+ $startAngle: number;
9
+ $endAngle: number;
10
+ }
11
+ interface StyledPieLabelProps {
12
+ $colorKey: Color | string;
13
+ $fontSize: number;
14
+ }
15
+ interface StyledLegendContainerProps {
16
+ $position: 'top' | 'right' | 'bottom' | 'left';
17
+ $spacing: number;
18
+ }
19
+ interface StyledLegendItemProps {
20
+ $spacing: number;
21
+ }
22
+ interface StyledLegendColorProps {
23
+ $colorKey: Color;
24
+ $size: number;
25
+ }
26
+ interface StyledLegendTextProps {
27
+ $fontSize: number;
28
+ $colorKey: Color | string;
29
+ }
30
+ interface StyledPieChartContainerProps {
31
+ $legendPosition: 'top' | 'right' | 'bottom' | 'left';
32
+ $showLegend: boolean;
33
+ $width?: WithResponsiveValue<number | string>;
34
+ $height?: WithResponsiveValue<number | string>;
35
+ $minWidth?: WithResponsiveValue<number | string>;
36
+ $maxWidth?: WithResponsiveValue<number | string>;
37
+ $minHeight?: WithResponsiveValue<number | string>;
38
+ $maxHeight?: WithResponsiveValue<number | string>;
39
+ }
40
+ export declare const StyledPieChartContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('..').BoxProps & {
41
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
42
+ }, StyledPieChartContainerProps>> & string & Omit<(props: import('..').BoxProps & {
43
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
44
+ }) => ReturnType<({ children, style, "data-testid": testId, ...otherProps }: import('..').BoxProps, ref: import('react').ForwardedRef<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element>, keyof import('react').Component<any, {}, any>>;
45
+ export declare const StyledPieChartSvg: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').SVGProps<SVGSVGElement>, {
46
+ $width?: number | string;
47
+ $height?: number;
48
+ }>> & string;
49
+ export declare const StyledPieSlice: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').SVGProps<SVGPathElement>, StyledPieSliceProps>> & string;
50
+ export declare const StyledPieLabel: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').SVGTextElementAttributes<SVGTextElement>, StyledPieLabelProps>> & string;
51
+ export declare const StyledLegendContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('..').BoxProps & {
52
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
53
+ }, StyledLegendContainerProps>> & string & Omit<(props: import('..').BoxProps & {
54
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
55
+ }) => ReturnType<({ children, style, "data-testid": testId, ...otherProps }: import('..').BoxProps, ref: import('react').ForwardedRef<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element>, keyof import('react').Component<any, {}, any>>;
56
+ export declare const StyledLegendItem: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('..').BoxProps & {
57
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
58
+ }, StyledLegendItemProps>> & string & Omit<(props: import('..').BoxProps & {
59
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
60
+ }) => ReturnType<({ children, style, "data-testid": testId, ...otherProps }: import('..').BoxProps, ref: import('react').ForwardedRef<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element>, keyof import('react').Component<any, {}, any>>;
61
+ export declare const StyledLegendColor: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('..').BoxProps & {
62
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
63
+ }, StyledLegendColorProps>> & string & Omit<(props: import('..').BoxProps & {
64
+ ref?: import('react').ForwardedRef<HTMLDivElement>;
65
+ }) => ReturnType<({ children, style, "data-testid": testId, ...otherProps }: import('..').BoxProps, ref: import('react').ForwardedRef<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element>, keyof import('react').Component<any, {}, any>>;
66
+ export declare const StyledLegendText: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, StyledLegendTextProps>> & string;
67
+ export {};
@@ -0,0 +1 @@
1
+ export * from './PieChart';
@@ -22,3 +22,6 @@ export * from './Pagination';
22
22
  export * from './Progress';
23
23
  export * from './Modal';
24
24
  export * from './Tooltip';
25
+ export * from './BarChart';
26
+ export * from './PieChart';
27
+ export * from './LineChart';