sag_components 2.0.0-beta70 → 2.0.0-beta71
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.esm.js +742 -685
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +741 -684
- package/dist/index.js.map +1 -1
- package/dist/types/components/BrushChart/BrushChart.style.d.ts +38 -0
- package/dist/types/components/BrushChart/Charts/BarLine.d.ts +2 -4
- package/dist/types/components/BrushChart/Charts/InnerBar.d.ts +2 -3
- package/dist/types/components/BrushChart/Charts/SingleChart.d.ts +2 -5
- package/dist/types/utils/CommonFunctions.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,4 +1,42 @@
|
|
|
1
1
|
export const Container: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
2
|
+
export const SegmentedContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<any, never>> & string & Omit<{
|
|
3
|
+
(props: any): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
propTypes: {
|
|
5
|
+
name: import("prop-types").Requireable<string>;
|
|
6
|
+
options: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
7
|
+
value: import("prop-types").Requireable<string>;
|
|
8
|
+
}>[]>;
|
|
9
|
+
width: import("prop-types").Requireable<number>;
|
|
10
|
+
height: import("prop-types").Requireable<number>;
|
|
11
|
+
controlradius: import("prop-types").Requireable<number>;
|
|
12
|
+
segmentradius: import("prop-types").Requireable<number>;
|
|
13
|
+
gap: import("prop-types").Requireable<string>;
|
|
14
|
+
fontSize: import("prop-types").Requireable<number>;
|
|
15
|
+
selectedsegmentcolor: import("prop-types").Requireable<string>;
|
|
16
|
+
selectedtextcolor: import("prop-types").Requireable<string>;
|
|
17
|
+
unselectedtextcolor: import("prop-types").Requireable<string>;
|
|
18
|
+
defaultIndex: import("prop-types").Requireable<number>;
|
|
19
|
+
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
20
|
+
};
|
|
21
|
+
defaultProps: {
|
|
22
|
+
name: string;
|
|
23
|
+
options: {
|
|
24
|
+
value: string;
|
|
25
|
+
}[];
|
|
26
|
+
width: number;
|
|
27
|
+
height: number;
|
|
28
|
+
controlradius: number;
|
|
29
|
+
segmentradius: number;
|
|
30
|
+
gap: string;
|
|
31
|
+
fontSize: number;
|
|
32
|
+
selectedsegmentcolor: string;
|
|
33
|
+
selectedtextcolor: string;
|
|
34
|
+
unselectedtextcolor: string;
|
|
35
|
+
defaultIndex: number;
|
|
36
|
+
onClick: () => void;
|
|
37
|
+
};
|
|
38
|
+
}, keyof import("react").Component<any, {}, any>>;
|
|
39
|
+
export const ChartContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
2
40
|
export const Title: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>> & string;
|
|
3
41
|
export const BrushChart: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
4
42
|
export const LineChartWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
@@ -1,4 +1,2 @@
|
|
|
1
|
-
export default
|
|
2
|
-
declare function
|
|
3
|
-
brushAreaBarData?: any[];
|
|
4
|
-
}): import("react/jsx-runtime").JSX.Element;
|
|
1
|
+
export default BarLine;
|
|
2
|
+
declare function BarLine(props: any): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export default
|
|
2
|
-
|
|
3
|
-
}): import("react/jsx-runtime").JSX.Element;
|
|
1
|
+
export default InnerBar;
|
|
2
|
+
declare function InnerBar(props: any): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,5 +1,2 @@
|
|
|
1
|
-
export default
|
|
2
|
-
|
|
3
|
-
height?: number;
|
|
4
|
-
width?: string;
|
|
5
|
-
}): import("react/jsx-runtime").JSX.Element;
|
|
1
|
+
export default SingleChart;
|
|
2
|
+
declare function SingleChart(props: any): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export function getCurrencySign(currencyTypeToConvert: any, value: any): string;
|
|
2
|
+
export function getMaxCharsPerLine(len: any): 20 | 15 | 10 | 5;
|
|
2
3
|
export function getFormattedUnits(num: any): "" | "B" | "M" | "K";
|
|
3
4
|
export function getFormattedValue(num: any, decimal?: boolean): string;
|
|
4
5
|
export function formattedValue(num: any): any;
|