sag_components 2.0.0-beta15 → 2.0.0-beta16
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.
- package/dist/index.d.ts +1 -77
- package/dist/index.esm.js +84 -89
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +84 -89
- package/dist/index.js.map +1 -1
- package/dist/types/components/BarChart/BarChart.d.ts +0 -77
- package/package.json +1 -1
|
@@ -1,79 +1,2 @@
|
|
|
1
1
|
export function BarChart(props: any): import("react/jsx-runtime").JSX.Element;
|
|
2
|
-
export namespace BarChart {
|
|
3
|
-
namespace propTypes {
|
|
4
|
-
const title: PropTypes.Requireable<string>;
|
|
5
|
-
const barChartData: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
6
|
-
title: PropTypes.Requireable<string>;
|
|
7
|
-
date: PropTypes.Requireable<string>;
|
|
8
|
-
value: PropTypes.Requireable<number>;
|
|
9
|
-
}> | null | undefined)[]>;
|
|
10
|
-
const width: PropTypes.Requireable<string>;
|
|
11
|
-
const height: PropTypes.Requireable<string>;
|
|
12
|
-
const barSize: PropTypes.Requireable<number>;
|
|
13
|
-
const barFontSizeValue: PropTypes.Requireable<string>;
|
|
14
|
-
const barChartColor: PropTypes.Requireable<string>;
|
|
15
|
-
const showDollarSign: PropTypes.Requireable<boolean>;
|
|
16
|
-
const isDollar: PropTypes.Requireable<boolean>;
|
|
17
|
-
const showLegend: PropTypes.Requireable<boolean>;
|
|
18
|
-
const legendData: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
19
|
-
title: PropTypes.Validator<string>;
|
|
20
|
-
iconType: PropTypes.Validator<string>;
|
|
21
|
-
iconColor: PropTypes.Validator<string>;
|
|
22
|
-
}> | null | undefined)[]>;
|
|
23
|
-
const showReferenceLine: PropTypes.Requireable<boolean>;
|
|
24
|
-
const referenceLinePoint: PropTypes.Requireable<number>;
|
|
25
|
-
const referenceLineColor: PropTypes.Requireable<string>;
|
|
26
|
-
const referenceLineDashed: PropTypes.Requireable<string>;
|
|
27
|
-
const showCurrentCampaignStyle: PropTypes.Requireable<boolean>;
|
|
28
|
-
const currentBarColor: PropTypes.Requireable<string>;
|
|
29
|
-
const isPercent: PropTypes.Requireable<boolean>;
|
|
30
|
-
}
|
|
31
|
-
namespace defaultProps {
|
|
32
|
-
const title_1: string;
|
|
33
|
-
export { title_1 as title };
|
|
34
|
-
const barChartData_1: {
|
|
35
|
-
title: string;
|
|
36
|
-
date: string;
|
|
37
|
-
value: number;
|
|
38
|
-
}[];
|
|
39
|
-
export { barChartData_1 as barChartData };
|
|
40
|
-
const width_1: string;
|
|
41
|
-
export { width_1 as width };
|
|
42
|
-
const height_1: string;
|
|
43
|
-
export { height_1 as height };
|
|
44
|
-
const barSize_1: number;
|
|
45
|
-
export { barSize_1 as barSize };
|
|
46
|
-
const barFontSizeValue_1: string;
|
|
47
|
-
export { barFontSizeValue_1 as barFontSizeValue };
|
|
48
|
-
const barChartColor_1: string;
|
|
49
|
-
export { barChartColor_1 as barChartColor };
|
|
50
|
-
const showDollarSign_1: boolean;
|
|
51
|
-
export { showDollarSign_1 as showDollarSign };
|
|
52
|
-
const isDollar_1: boolean;
|
|
53
|
-
export { isDollar_1 as isDollar };
|
|
54
|
-
const showLegend_1: boolean;
|
|
55
|
-
export { showLegend_1 as showLegend };
|
|
56
|
-
const legendData_1: {
|
|
57
|
-
title: string;
|
|
58
|
-
iconType: string;
|
|
59
|
-
iconColor: string;
|
|
60
|
-
}[];
|
|
61
|
-
export { legendData_1 as legendData };
|
|
62
|
-
const showReferenceLine_1: boolean;
|
|
63
|
-
export { showReferenceLine_1 as showReferenceLine };
|
|
64
|
-
const referenceLinePoint_1: number;
|
|
65
|
-
export { referenceLinePoint_1 as referenceLinePoint };
|
|
66
|
-
const referenceLineColor_1: string;
|
|
67
|
-
export { referenceLineColor_1 as referenceLineColor };
|
|
68
|
-
const referenceLineDashed_1: string;
|
|
69
|
-
export { referenceLineDashed_1 as referenceLineDashed };
|
|
70
|
-
const showCurrentCampaignStyle_1: boolean;
|
|
71
|
-
export { showCurrentCampaignStyle_1 as showCurrentCampaignStyle };
|
|
72
|
-
const currentBarColor_1: string;
|
|
73
|
-
export { currentBarColor_1 as currentBarColor };
|
|
74
|
-
const isPercent_1: boolean;
|
|
75
|
-
export { isPercent_1 as isPercent };
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
2
|
export default BarChart;
|
|
79
|
-
import PropTypes from "prop-types";
|