sag_components 2.0.0-beta70 → 2.0.0-beta72
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 +153 -126
- package/dist/index.esm.js +2673 -1069
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2675 -1066
- package/dist/index.js.map +1 -1
- package/dist/types/components/BannerEventBox/BannerEventBox.d.ts +0 -37
- package/dist/types/components/BannerEventBoxList/BannerEventBoxList.d.ts +0 -69
- package/dist/types/components/BannerEventBoxList/BannerEventBoxList.style.d.ts +13 -12
- package/dist/types/components/BarChart/BarChart.d.ts +3 -0
- package/dist/types/components/BarChartTwoRows/BarChartTwoRows.d.ts +0 -80
- package/dist/types/components/BarChartWithAreaChart/BarChartWithAreaChart.d.ts +0 -64
- 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/components/CollapseData/CollapseData.d.ts +6 -0
- package/dist/types/components/TabMenu/TabMenu.d.ts +1 -57
- package/dist/types/components/TwoBarCharts/TwoBarCharts.d.ts +3 -0
- package/dist/types/components/TwoBarCharts/TwoBarCharts.stories.d.ts +8 -0
- package/dist/types/icons/BarcodeIcon.d.ts +6 -0
- package/dist/types/icons/ChevronIcon.d.ts +7 -0
- package/dist/types/icons/FolderIcon.d.ts +6 -0
- package/dist/types/icons/PeopleIcon.d.ts +6 -0
- package/dist/types/index.d.ts +5 -0
- package/dist/types/utils/CommonFunctions.d.ts +1 -0
- package/package.json +1 -1
- /package/dist/types/components/{QuickFilterDropdownSingle/SagIconButton → SagIconButton}/SagIconButton.d.ts +0 -0
- /package/dist/types/components/{QuickFilterDropdownSingle/SagIconButton → SagIconButton}/SagIconButton.stories.d.ts +0 -0
- /package/dist/types/components/{QuickFilterDropdownSingle/SagIconButton → SagIconButton}/SagIconButton.style.d.ts +0 -0
|
@@ -1,39 +1,2 @@
|
|
|
1
1
|
export function BannerEventBox(props: any): import("react/jsx-runtime").JSX.Element;
|
|
2
|
-
export namespace BannerEventBox {
|
|
3
|
-
namespace propTypes {
|
|
4
|
-
const width: PropTypes.Requireable<string>;
|
|
5
|
-
const height: PropTypes.Requireable<string>;
|
|
6
|
-
const banner: PropTypes.Requireable<string>;
|
|
7
|
-
const buttonText: PropTypes.Requireable<string>;
|
|
8
|
-
const description: PropTypes.Requireable<string>;
|
|
9
|
-
const disabled: PropTypes.Requireable<boolean>;
|
|
10
|
-
const dates: PropTypes.Requireable<string[]>;
|
|
11
|
-
const data: PropTypes.Requireable<PropTypes.InferProps<{}>[]>;
|
|
12
|
-
const onInfoClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
13
|
-
}
|
|
14
|
-
namespace defaultProps {
|
|
15
|
-
const width_1: string;
|
|
16
|
-
export { width_1 as width };
|
|
17
|
-
const height_1: string;
|
|
18
|
-
export { height_1 as height };
|
|
19
|
-
const banner_1: string;
|
|
20
|
-
export { banner_1 as banner };
|
|
21
|
-
const description_1: string;
|
|
22
|
-
export { description_1 as description };
|
|
23
|
-
const dates_1: string[];
|
|
24
|
-
export { dates_1 as dates };
|
|
25
|
-
const buttonText_1: string;
|
|
26
|
-
export { buttonText_1 as buttonText };
|
|
27
|
-
const data_1: {
|
|
28
|
-
name: string;
|
|
29
|
-
items: number;
|
|
30
|
-
}[];
|
|
31
|
-
export { data_1 as data };
|
|
32
|
-
export function onInfoClick_1(): void;
|
|
33
|
-
export { onInfoClick_1 as onInfoClick };
|
|
34
|
-
const disabled_1: boolean;
|
|
35
|
-
export { disabled_1 as disabled };
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
2
|
export default BannerEventBox;
|
|
39
|
-
import PropTypes from "prop-types";
|
|
@@ -1,71 +1,2 @@
|
|
|
1
1
|
export default BannerEventBoxList;
|
|
2
2
|
declare function BannerEventBoxList(props: any): import("react/jsx-runtime").JSX.Element;
|
|
3
|
-
declare namespace BannerEventBoxList {
|
|
4
|
-
namespace propTypes {
|
|
5
|
-
const className: PropTypes.Requireable<string>;
|
|
6
|
-
const width: PropTypes.Requireable<string>;
|
|
7
|
-
const height: PropTypes.Requireable<string>;
|
|
8
|
-
const eventType: PropTypes.Requireable<string>;
|
|
9
|
-
const eventName: PropTypes.Requireable<string>;
|
|
10
|
-
const count: PropTypes.Requireable<number>;
|
|
11
|
-
const toggleColor: PropTypes.Requireable<string>;
|
|
12
|
-
const data: PropTypes.Requireable<PropTypes.InferProps<{}>[]>;
|
|
13
|
-
const retailer: PropTypes.Requireable<string>;
|
|
14
|
-
const retailerFile: PropTypes.Requireable<(...args: any[]) => any>;
|
|
15
|
-
const showLoader: PropTypes.Requireable<boolean>;
|
|
16
|
-
const showEventDetails: PropTypes.Requireable<boolean>;
|
|
17
|
-
const cardsContent: PropTypes.Requireable<boolean>;
|
|
18
|
-
const linkText: PropTypes.Requireable<string>;
|
|
19
|
-
const disableToggle: PropTypes.Requireable<boolean>;
|
|
20
|
-
const children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
21
|
-
const bannerWidth: PropTypes.Requireable<string>;
|
|
22
|
-
const showDraft: PropTypes.Requireable<boolean>;
|
|
23
|
-
}
|
|
24
|
-
namespace defaultProps {
|
|
25
|
-
const className_1: string;
|
|
26
|
-
export { className_1 as className };
|
|
27
|
-
const width_1: string;
|
|
28
|
-
export { width_1 as width };
|
|
29
|
-
const height_1: string;
|
|
30
|
-
export { height_1 as height };
|
|
31
|
-
const eventType_1: string;
|
|
32
|
-
export { eventType_1 as eventType };
|
|
33
|
-
const eventName_1: string;
|
|
34
|
-
export { eventName_1 as eventName };
|
|
35
|
-
const count_1: any;
|
|
36
|
-
export { count_1 as count };
|
|
37
|
-
const toggleColor_1: string;
|
|
38
|
-
export { toggleColor_1 as toggleColor };
|
|
39
|
-
const data_1: {
|
|
40
|
-
banner: string;
|
|
41
|
-
description: string;
|
|
42
|
-
dates: string[];
|
|
43
|
-
data: {
|
|
44
|
-
name: string;
|
|
45
|
-
items: string[];
|
|
46
|
-
}[];
|
|
47
|
-
}[];
|
|
48
|
-
export { data_1 as data };
|
|
49
|
-
const retailer_1: string;
|
|
50
|
-
export { retailer_1 as retailer };
|
|
51
|
-
export function retailerFile_1(): void;
|
|
52
|
-
export { retailerFile_1 as retailerFile };
|
|
53
|
-
const cardsContent_1: boolean;
|
|
54
|
-
export { cardsContent_1 as cardsContent };
|
|
55
|
-
const linkText_1: string;
|
|
56
|
-
export { linkText_1 as linkText };
|
|
57
|
-
const showLoader_1: boolean;
|
|
58
|
-
export { showLoader_1 as showLoader };
|
|
59
|
-
const showEventDetails_1: boolean;
|
|
60
|
-
export { showEventDetails_1 as showEventDetails };
|
|
61
|
-
const disableToggle_1: boolean;
|
|
62
|
-
export { disableToggle_1 as disableToggle };
|
|
63
|
-
const children_1: any;
|
|
64
|
-
export { children_1 as children };
|
|
65
|
-
const bannerWidth_1: string;
|
|
66
|
-
export { bannerWidth_1 as bannerWidth };
|
|
67
|
-
const showDraft_1: boolean;
|
|
68
|
-
export { showDraft_1 as showDraft };
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
import PropTypes from "prop-types";
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
export const CollapseMenuItemMainContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<
|
|
2
|
-
export const CollapseMenuItemContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<
|
|
3
|
-
export const LoaderWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<
|
|
4
|
-
export const Loader: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<
|
|
5
|
-
export const BannerIcon: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<
|
|
6
|
-
export const MainDetails: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<
|
|
7
|
-
export const SubDetails: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<
|
|
8
|
-
export const ProductName: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<
|
|
9
|
-
export const ToggleContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<
|
|
10
|
-
export const CollapseMenuItemContentContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<
|
|
11
|
-
export const MainContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<
|
|
12
|
-
export const DraftTag: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<
|
|
1
|
+
export const CollapseMenuItemMainContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
2
|
+
export const CollapseMenuItemContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
3
|
+
export const LoaderWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
4
|
+
export const Loader: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
|
|
5
|
+
export const BannerIcon: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
6
|
+
export const MainDetails: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
7
|
+
export const SubDetails: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
|
|
8
|
+
export const ProductName: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
|
|
9
|
+
export const ToggleContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
10
|
+
export const CollapseMenuItemContentContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
11
|
+
export const MainContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
12
|
+
export const DraftTag: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
13
|
+
import React from "react";
|
|
@@ -27,6 +27,7 @@ export namespace BarChart {
|
|
|
27
27
|
const showCurrentCampaignStyle: PropTypes.Requireable<boolean>;
|
|
28
28
|
const currentBarColor: PropTypes.Requireable<string>;
|
|
29
29
|
const isPercent: PropTypes.Requireable<boolean>;
|
|
30
|
+
const noDataText: PropTypes.Requireable<string>;
|
|
30
31
|
}
|
|
31
32
|
namespace defaultProps {
|
|
32
33
|
const title_1: string;
|
|
@@ -73,6 +74,8 @@ export namespace BarChart {
|
|
|
73
74
|
export { currentBarColor_1 as currentBarColor };
|
|
74
75
|
const isPercent_1: boolean;
|
|
75
76
|
export { isPercent_1 as isPercent };
|
|
77
|
+
const noDataText_1: string;
|
|
78
|
+
export { noDataText_1 as noDataText };
|
|
76
79
|
}
|
|
77
80
|
}
|
|
78
81
|
export default BarChart;
|
|
@@ -1,82 +1,2 @@
|
|
|
1
1
|
export function BarChartTwoRows(props: any): import("react/jsx-runtime").JSX.Element;
|
|
2
|
-
export namespace BarChartTwoRows {
|
|
3
|
-
namespace propTypes {
|
|
4
|
-
const title: PropTypes.Requireable<string>;
|
|
5
|
-
const width: PropTypes.Requireable<string>;
|
|
6
|
-
const height: PropTypes.Requireable<string>;
|
|
7
|
-
const barChartHeight: PropTypes.Requireable<number>;
|
|
8
|
-
const barSize: PropTypes.Requireable<number>;
|
|
9
|
-
const barFontSizeValue: PropTypes.Requireable<string>;
|
|
10
|
-
const barChartColorFirst: PropTypes.Requireable<string>;
|
|
11
|
-
const barChartColorSecond: PropTypes.Requireable<string>;
|
|
12
|
-
const showDollarSign: PropTypes.Requireable<boolean>;
|
|
13
|
-
const isDollar: PropTypes.Requireable<boolean>;
|
|
14
|
-
const showReferenceLine: PropTypes.Requireable<boolean>;
|
|
15
|
-
const referenceLinePoint: PropTypes.Requireable<number>;
|
|
16
|
-
const referenceLineColor: PropTypes.Requireable<string>;
|
|
17
|
-
const referenceLineDashed: PropTypes.Requireable<string>;
|
|
18
|
-
const lowerValueLabel: PropTypes.Requireable<string>;
|
|
19
|
-
const highValueLabel: PropTypes.Requireable<string>;
|
|
20
|
-
const showLegend: PropTypes.Requireable<boolean>;
|
|
21
|
-
const legendData: PropTypes.Requireable<PropTypes.InferProps<{
|
|
22
|
-
title: PropTypes.Validator<string>;
|
|
23
|
-
iconType: PropTypes.Validator<string>;
|
|
24
|
-
iconColor: PropTypes.Validator<string>;
|
|
25
|
-
}>[]>;
|
|
26
|
-
const barChartData: PropTypes.Requireable<PropTypes.InferProps<{
|
|
27
|
-
title: PropTypes.Requireable<string>;
|
|
28
|
-
date: PropTypes.Requireable<string>;
|
|
29
|
-
value: PropTypes.Requireable<number>;
|
|
30
|
-
}>[]>;
|
|
31
|
-
}
|
|
32
|
-
namespace defaultProps {
|
|
33
|
-
const title_1: string;
|
|
34
|
-
export { title_1 as title };
|
|
35
|
-
const width_1: string;
|
|
36
|
-
export { width_1 as width };
|
|
37
|
-
const height_1: string;
|
|
38
|
-
export { height_1 as height };
|
|
39
|
-
const barChartHeight_1: number;
|
|
40
|
-
export { barChartHeight_1 as barChartHeight };
|
|
41
|
-
const barSize_1: number;
|
|
42
|
-
export { barSize_1 as barSize };
|
|
43
|
-
const barFontSizeValue_1: string;
|
|
44
|
-
export { barFontSizeValue_1 as barFontSizeValue };
|
|
45
|
-
const barChartColorFirst_1: string;
|
|
46
|
-
export { barChartColorFirst_1 as barChartColorFirst };
|
|
47
|
-
const barChartColorSecond_1: string;
|
|
48
|
-
export { barChartColorSecond_1 as barChartColorSecond };
|
|
49
|
-
const showDollarSign_1: boolean;
|
|
50
|
-
export { showDollarSign_1 as showDollarSign };
|
|
51
|
-
const isDollar_1: boolean;
|
|
52
|
-
export { isDollar_1 as isDollar };
|
|
53
|
-
const showReferenceLine_1: boolean;
|
|
54
|
-
export { showReferenceLine_1 as showReferenceLine };
|
|
55
|
-
const referenceLinePoint_1: number;
|
|
56
|
-
export { referenceLinePoint_1 as referenceLinePoint };
|
|
57
|
-
const referenceLineColor_1: string;
|
|
58
|
-
export { referenceLineColor_1 as referenceLineColor };
|
|
59
|
-
const referenceLineDashed_1: string;
|
|
60
|
-
export { referenceLineDashed_1 as referenceLineDashed };
|
|
61
|
-
const lowerValueLabel_1: string;
|
|
62
|
-
export { lowerValueLabel_1 as lowerValueLabel };
|
|
63
|
-
const highValueLabel_1: string;
|
|
64
|
-
export { highValueLabel_1 as highValueLabel };
|
|
65
|
-
const showLegend_1: boolean;
|
|
66
|
-
export { showLegend_1 as showLegend };
|
|
67
|
-
const legendData_1: {
|
|
68
|
-
title: string;
|
|
69
|
-
iconType: string;
|
|
70
|
-
iconColor: string;
|
|
71
|
-
}[];
|
|
72
|
-
export { legendData_1 as legendData };
|
|
73
|
-
const barChartData_1: {
|
|
74
|
-
title: string;
|
|
75
|
-
date: string;
|
|
76
|
-
value: number;
|
|
77
|
-
}[];
|
|
78
|
-
export { barChartData_1 as barChartData };
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
2
|
export default BarChartTwoRows;
|
|
82
|
-
import PropTypes from "prop-types";
|
|
@@ -1,66 +1,2 @@
|
|
|
1
1
|
export function BarChartWithAreaChart(props: any): import("react/jsx-runtime").JSX.Element;
|
|
2
|
-
export namespace BarChartWithAreaChart {
|
|
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
|
-
avgValue: PropTypes.Requireable<number>;
|
|
10
|
-
}>[]>;
|
|
11
|
-
const width: PropTypes.Requireable<string>;
|
|
12
|
-
const height: PropTypes.Requireable<string>;
|
|
13
|
-
const barSize: PropTypes.Requireable<number>;
|
|
14
|
-
const barChartHeight: PropTypes.Requireable<number>;
|
|
15
|
-
const barFontSizeValue: PropTypes.Requireable<string>;
|
|
16
|
-
const barChartColor: PropTypes.Requireable<string>;
|
|
17
|
-
const showLegend: PropTypes.Requireable<boolean>;
|
|
18
|
-
const signType: PropTypes.Requireable<string>;
|
|
19
|
-
const isAreaChartDisplayed: PropTypes.Requireable<boolean>;
|
|
20
|
-
const legendData: PropTypes.Requireable<PropTypes.InferProps<{
|
|
21
|
-
title: PropTypes.Validator<string>;
|
|
22
|
-
iconType: PropTypes.Validator<string>;
|
|
23
|
-
iconColor: PropTypes.Validator<string>;
|
|
24
|
-
}>[]>;
|
|
25
|
-
const maxRange: PropTypes.Requireable<number>;
|
|
26
|
-
}
|
|
27
|
-
namespace defaultProps {
|
|
28
|
-
const title_1: string;
|
|
29
|
-
export { title_1 as title };
|
|
30
|
-
const barChartData_1: {
|
|
31
|
-
title: string;
|
|
32
|
-
date: string;
|
|
33
|
-
value: number;
|
|
34
|
-
avgValue: number;
|
|
35
|
-
}[];
|
|
36
|
-
export { barChartData_1 as barChartData };
|
|
37
|
-
const width_1: string;
|
|
38
|
-
export { width_1 as width };
|
|
39
|
-
const height_1: string;
|
|
40
|
-
export { height_1 as height };
|
|
41
|
-
const barSize_1: number;
|
|
42
|
-
export { barSize_1 as barSize };
|
|
43
|
-
const barChartHeight_1: number;
|
|
44
|
-
export { barChartHeight_1 as barChartHeight };
|
|
45
|
-
const barFontSizeValue_1: string;
|
|
46
|
-
export { barFontSizeValue_1 as barFontSizeValue };
|
|
47
|
-
const barChartColor_1: string;
|
|
48
|
-
export { barChartColor_1 as barChartColor };
|
|
49
|
-
const showLegend_1: boolean;
|
|
50
|
-
export { showLegend_1 as showLegend };
|
|
51
|
-
const signType_1: string;
|
|
52
|
-
export { signType_1 as signType };
|
|
53
|
-
const isAreaChartDisplayed_1: boolean;
|
|
54
|
-
export { isAreaChartDisplayed_1 as isAreaChartDisplayed };
|
|
55
|
-
const legendData_1: {
|
|
56
|
-
title: string;
|
|
57
|
-
iconType: string;
|
|
58
|
-
iconColor: string;
|
|
59
|
-
}[];
|
|
60
|
-
export { legendData_1 as legendData };
|
|
61
|
-
const maxRange_1: number;
|
|
62
|
-
export { maxRange_1 as maxRange };
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
2
|
export default BarChartWithAreaChart;
|
|
66
|
-
import PropTypes from "prop-types";
|
|
@@ -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;
|
|
@@ -5,6 +5,8 @@ export namespace CollapseData {
|
|
|
5
5
|
const noDataText: PropTypes.Requireable<string>;
|
|
6
6
|
const width: PropTypes.Requireable<string>;
|
|
7
7
|
const height: PropTypes.Requireable<string>;
|
|
8
|
+
const addPlusMark: PropTypes.Requireable<boolean>;
|
|
9
|
+
const addArrowToTotal: PropTypes.Requireable<boolean>;
|
|
8
10
|
const tableData: PropTypes.Requireable<PropTypes.InferProps<{
|
|
9
11
|
key: PropTypes.Requireable<number>;
|
|
10
12
|
icon: PropTypes.Requireable<string>;
|
|
@@ -28,6 +30,10 @@ export namespace CollapseData {
|
|
|
28
30
|
export { height_1 as height };
|
|
29
31
|
const tableData_1: any[];
|
|
30
32
|
export { tableData_1 as tableData };
|
|
33
|
+
const addPlusMark_1: boolean;
|
|
34
|
+
export { addPlusMark_1 as addPlusMark };
|
|
35
|
+
const addArrowToTotal_1: boolean;
|
|
36
|
+
export { addArrowToTotal_1 as addArrowToTotal };
|
|
31
37
|
}
|
|
32
38
|
}
|
|
33
39
|
export default CollapseData;
|
|
@@ -1,58 +1,2 @@
|
|
|
1
1
|
export default TabMenu;
|
|
2
|
-
declare function TabMenu(
|
|
3
|
-
color?: string;
|
|
4
|
-
currentTab?: number;
|
|
5
|
-
headlineInsteadTabs?: boolean;
|
|
6
|
-
headlineText?: string;
|
|
7
|
-
headlineContent?: import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
className?: string;
|
|
9
|
-
children?: any;
|
|
10
|
-
tabs?: any[];
|
|
11
|
-
inputWidth?: string;
|
|
12
|
-
onFilterButtonClick?: () => void;
|
|
13
|
-
onSearchFieldTyping?: () => void;
|
|
14
|
-
onTabChange?: () => void;
|
|
15
|
-
onTopButtonClick?: () => void;
|
|
16
|
-
panelIsOpen?: boolean;
|
|
17
|
-
setBackground?: boolean;
|
|
18
|
-
showActions?: boolean;
|
|
19
|
-
showFilterButton?: boolean;
|
|
20
|
-
showLabel?: boolean;
|
|
21
|
-
showSearchInput?: boolean;
|
|
22
|
-
showViewOptionsButton?: boolean;
|
|
23
|
-
disabledButton?: boolean;
|
|
24
|
-
setTopRightButton?: boolean;
|
|
25
|
-
rightButtonText?: string;
|
|
26
|
-
rightButtonIcon?: string;
|
|
27
|
-
}): import("react/jsx-runtime").JSX.Element;
|
|
28
|
-
declare namespace TabMenu {
|
|
29
|
-
namespace propTypes {
|
|
30
|
-
const children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
31
|
-
const className: PropTypes.Requireable<string>;
|
|
32
|
-
const color: PropTypes.Requireable<string>;
|
|
33
|
-
const currentTab: PropTypes.Requireable<number>;
|
|
34
|
-
const headlineInsteadTabs: PropTypes.Requireable<boolean>;
|
|
35
|
-
const headlineText: PropTypes.Requireable<string>;
|
|
36
|
-
const inputWidth: PropTypes.Requireable<string>;
|
|
37
|
-
const onFilterButtonClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
38
|
-
const onSearchFieldTyping: PropTypes.Requireable<(...args: any[]) => any>;
|
|
39
|
-
const onTabChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
40
|
-
const panelIsOpen: PropTypes.Requireable<boolean>;
|
|
41
|
-
const setBackground: PropTypes.Requireable<boolean>;
|
|
42
|
-
const showActions: PropTypes.Requireable<boolean>;
|
|
43
|
-
const showFilterButton: PropTypes.Requireable<boolean>;
|
|
44
|
-
const showLabel: PropTypes.Requireable<boolean>;
|
|
45
|
-
const showSearchInput: PropTypes.Requireable<boolean>;
|
|
46
|
-
const showViewOptionsButton: PropTypes.Requireable<boolean>;
|
|
47
|
-
const disabledButton: PropTypes.Requireable<boolean>;
|
|
48
|
-
const setTopRightButton: PropTypes.Requireable<boolean>;
|
|
49
|
-
const rightButtonText: PropTypes.Requireable<string>;
|
|
50
|
-
const rightButtonIcon: PropTypes.Requireable<string>;
|
|
51
|
-
const onTopButtonClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
52
|
-
const tabs: PropTypes.Requireable<PropTypes.InferProps<{
|
|
53
|
-
title: PropTypes.Requireable<string>;
|
|
54
|
-
content: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
55
|
-
}>[]>;
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
import PropTypes from "prop-types";
|
|
2
|
+
declare function TabMenu(props: any): import("react/jsx-runtime").JSX.Element;
|
|
@@ -25,6 +25,7 @@ export namespace TwoBarCharts {
|
|
|
25
25
|
const referenceLinePoint: PropTypes.Requireable<number>;
|
|
26
26
|
const referenceLineColor: PropTypes.Requireable<string>;
|
|
27
27
|
const referenceLineDashed: PropTypes.Requireable<string>;
|
|
28
|
+
const showTooltip: PropTypes.Requireable<boolean>;
|
|
28
29
|
}
|
|
29
30
|
namespace defaultProps {
|
|
30
31
|
const title_1: string;
|
|
@@ -68,6 +69,8 @@ export namespace TwoBarCharts {
|
|
|
68
69
|
export { referenceLineColor_1 as referenceLineColor };
|
|
69
70
|
const referenceLineDashed_1: string;
|
|
70
71
|
export { referenceLineDashed_1 as referenceLineDashed };
|
|
72
|
+
const showTooltip_1: boolean;
|
|
73
|
+
export { showTooltip_1 as showTooltip };
|
|
71
74
|
}
|
|
72
75
|
}
|
|
73
76
|
export default TwoBarCharts;
|
|
@@ -102,6 +102,12 @@ declare namespace _default {
|
|
|
102
102
|
const description_16: string;
|
|
103
103
|
export { description_16 as description };
|
|
104
104
|
}
|
|
105
|
+
export namespace showTooltip {
|
|
106
|
+
const control_16: string;
|
|
107
|
+
export { control_16 as control };
|
|
108
|
+
const description_17: string;
|
|
109
|
+
export { description_17 as description };
|
|
110
|
+
}
|
|
105
111
|
}
|
|
106
112
|
}
|
|
107
113
|
export default _default;
|
|
@@ -137,6 +143,8 @@ export namespace SalesDollars {
|
|
|
137
143
|
export { isDollar_1 as isDollar };
|
|
138
144
|
const showDollarSign_1: boolean;
|
|
139
145
|
export { showDollarSign_1 as showDollarSign };
|
|
146
|
+
const showTooltip_1: boolean;
|
|
147
|
+
export { showTooltip_1 as showTooltip };
|
|
140
148
|
const showReferenceLine_1: boolean;
|
|
141
149
|
export { showReferenceLine_1 as showReferenceLine };
|
|
142
150
|
const referenceLinePoint_1: number;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -29,4 +29,9 @@ export { default as BubbleChart } from "./components/BubbleChart/BubbleChart.jsx
|
|
|
29
29
|
export { default as BatteryChart } from "./components/BatteryChart/BatteryChart.jsx";
|
|
30
30
|
export { default as PerformanceAnalyticsLegend } from "./components/PerformanceAnalyticsLegend/PerformanceAnalyticsLegend.jsx";
|
|
31
31
|
export { default as BrushChart } from "./components/BrushChart/BrushChart.jsx";
|
|
32
|
+
export { default as SingleBarLineCharts } from "./components/SingleBarLineCharts/SingleBarLineCharts.jsx";
|
|
33
|
+
export { default as BarChartWithAreaChart } from "./components/BarChartWithAreaChart/BarChartWithAreaChart.jsx";
|
|
34
|
+
export { default as BarChartTwoRows } from "./components/BarChartTwoRows/BarChartTwoRows.jsx";
|
|
35
|
+
export { default as TwoBarCharts } from "./components/TwoBarCharts/TwoBarCharts.jsx";
|
|
36
|
+
export { default as CollapseData } from "./components/CollapseData/CollapseData.jsx";
|
|
32
37
|
export { default as InsightsCarousel } from "./components/InsightsCarousel/InsightsCarousel.jsx";
|
|
@@ -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;
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|