sag_components 2.0.0-beta72 → 2.0.0-beta74
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 +126 -153
- package/dist/index.esm.js +788 -2342
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +361 -1920
- package/dist/index.js.map +1 -1
- package/dist/types/components/BannerEventBox/BannerEventBox.d.ts +37 -0
- package/dist/types/components/BannerEventBoxList/BannerEventBoxList.d.ts +69 -0
- package/dist/types/components/BannerEventBoxList/BannerEventBoxList.style.d.ts +12 -13
- package/dist/types/components/BarChart/BarChart.d.ts +0 -3
- package/dist/types/components/BarChartTwoRows/BarChartTwoRows.d.ts +80 -0
- package/dist/types/components/BarChartWithAreaChart/BarChartWithAreaChart.d.ts +64 -0
- package/dist/types/components/CollapseData/CollapseData.d.ts +0 -6
- package/dist/types/components/MonthPicker/MonthPicker.d.ts +2 -1
- package/dist/types/components/MonthPicker/MonthPopupPicker.d.ts +2 -1
- package/dist/types/components/MonthPicker/MonthPopupPicker.style.d.ts +7 -0
- package/dist/types/components/QuarterPicker/QuarterPicker.d.ts +2 -1
- package/dist/types/components/QuarterPicker/QuarterPopupPicker.d.ts +2 -1
- package/dist/types/components/QuarterPicker/QuarterPopupPicker.style.d.ts +6 -0
- package/dist/types/components/QuickFilter/QuickFilter.stories.d.ts +154 -99
- package/dist/types/components/TabMenu/TabMenu.d.ts +57 -1
- package/dist/types/components/TwoBarCharts/TwoBarCharts.d.ts +0 -3
- package/dist/types/components/TwoBarCharts/TwoBarCharts.stories.d.ts +0 -8
- package/dist/types/index.d.ts +0 -5
- package/package.json +1 -1
- package/dist/types/icons/BarcodeIcon.d.ts +0 -6
- package/dist/types/icons/ChevronIcon.d.ts +0 -7
- package/dist/types/icons/FolderIcon.d.ts +0 -6
- package/dist/types/icons/PeopleIcon.d.ts +0 -6
- /package/dist/types/components/{SagIconButton → QuickFilterDropdownSingle/SagIconButton}/SagIconButton.d.ts +0 -0
- /package/dist/types/components/{SagIconButton → QuickFilterDropdownSingle/SagIconButton}/SagIconButton.stories.d.ts +0 -0
- /package/dist/types/components/{SagIconButton → QuickFilterDropdownSingle/SagIconButton}/SagIconButton.style.d.ts +0 -0
|
@@ -1,2 +1,39 @@
|
|
|
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
|
+
}
|
|
2
38
|
export default BannerEventBox;
|
|
39
|
+
import PropTypes from "prop-types";
|
|
@@ -1,2 +1,71 @@
|
|
|
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,13 +1,12 @@
|
|
|
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<
|
|
13
|
-
import React from "react";
|
|
1
|
+
export const CollapseMenuItemMainContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
2
|
+
export const CollapseMenuItemContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
3
|
+
export const LoaderWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
4
|
+
export const Loader: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
|
|
5
|
+
export const BannerIcon: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
6
|
+
export const MainDetails: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
7
|
+
export const SubDetails: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
|
|
8
|
+
export const ProductName: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
|
|
9
|
+
export const ToggleContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
10
|
+
export const CollapseMenuItemContentContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
11
|
+
export const MainContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
12
|
+
export const DraftTag: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
@@ -27,7 +27,6 @@ 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>;
|
|
31
30
|
}
|
|
32
31
|
namespace defaultProps {
|
|
33
32
|
const title_1: string;
|
|
@@ -74,8 +73,6 @@ export namespace BarChart {
|
|
|
74
73
|
export { currentBarColor_1 as currentBarColor };
|
|
75
74
|
const isPercent_1: boolean;
|
|
76
75
|
export { isPercent_1 as isPercent };
|
|
77
|
-
const noDataText_1: string;
|
|
78
|
-
export { noDataText_1 as noDataText };
|
|
79
76
|
}
|
|
80
77
|
}
|
|
81
78
|
export default BarChart;
|
|
@@ -1,2 +1,82 @@
|
|
|
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
|
+
}
|
|
2
81
|
export default BarChartTwoRows;
|
|
82
|
+
import PropTypes from "prop-types";
|
|
@@ -1,2 +1,66 @@
|
|
|
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
|
+
}
|
|
2
65
|
export default BarChartWithAreaChart;
|
|
66
|
+
import PropTypes from "prop-types";
|
|
@@ -5,8 +5,6 @@ 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>;
|
|
10
8
|
const tableData: PropTypes.Requireable<PropTypes.InferProps<{
|
|
11
9
|
key: PropTypes.Requireable<number>;
|
|
12
10
|
icon: PropTypes.Requireable<string>;
|
|
@@ -30,10 +28,6 @@ export namespace CollapseData {
|
|
|
30
28
|
export { height_1 as height };
|
|
31
29
|
const tableData_1: any[];
|
|
32
30
|
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 };
|
|
37
31
|
}
|
|
38
32
|
}
|
|
39
33
|
export default CollapseData;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default MonthPicker;
|
|
2
|
-
declare function MonthPicker({ availableMonths, label, onChange, borderRadius, required, width, height, placeholder, disabled, borderColor, borderColorFocus, textColor, selectedValue, }: {
|
|
2
|
+
declare function MonthPicker({ availableMonths, label, onChange, borderRadius, required, width, height, placeholder, disabled, borderColor, borderColorFocus, textColor, selectedValue, startYear }: {
|
|
3
3
|
availableMonths: any;
|
|
4
4
|
label: any;
|
|
5
5
|
onChange: any;
|
|
@@ -13,6 +13,7 @@ declare function MonthPicker({ availableMonths, label, onChange, borderRadius, r
|
|
|
13
13
|
borderColorFocus: any;
|
|
14
14
|
textColor: any;
|
|
15
15
|
selectedValue: any;
|
|
16
|
+
startYear: any;
|
|
16
17
|
}): import("react/jsx-runtime").JSX.Element;
|
|
17
18
|
declare namespace MonthPicker {
|
|
18
19
|
namespace propTypes {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
export default MonthPopupPicker;
|
|
2
|
-
declare function MonthPopupPicker({ isOpen, onChangeDate, value, setValue, startDateValue, availableMonths, }: {
|
|
2
|
+
declare function MonthPopupPicker({ isOpen, onChangeDate, value, setValue, startDateValue, availableMonths, startYear, }: {
|
|
3
3
|
isOpen: any;
|
|
4
4
|
onChangeDate: any;
|
|
5
5
|
value: any;
|
|
6
6
|
setValue: any;
|
|
7
7
|
startDateValue: any;
|
|
8
8
|
availableMonths: any;
|
|
9
|
+
startYear?: number;
|
|
9
10
|
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export const DatePickerContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
2
|
+
export const DatePickerPopup: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
3
|
+
export const DatePickerHeader: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
4
|
+
export const NavDiv: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
5
|
+
export const DatePickerSelect: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, never>> & string;
|
|
6
|
+
export const DatePickerCalendar: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
7
|
+
export const DateCell: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default QuarterPicker;
|
|
2
|
-
declare function QuarterPicker({ availableQuarters, label, onChange, borderRadius, required, width, height, placeholder, disabled, borderColor, borderColorFocus, textColor, selectedValue, }: {
|
|
2
|
+
declare function QuarterPicker({ availableQuarters, label, onChange, borderRadius, required, width, height, placeholder, disabled, borderColor, borderColorFocus, textColor, selectedValue, startYear }: {
|
|
3
3
|
availableQuarters: any;
|
|
4
4
|
label: any;
|
|
5
5
|
onChange: any;
|
|
@@ -13,6 +13,7 @@ declare function QuarterPicker({ availableQuarters, label, onChange, borderRadiu
|
|
|
13
13
|
borderColorFocus: any;
|
|
14
14
|
textColor: any;
|
|
15
15
|
selectedValue: any;
|
|
16
|
+
startYear: any;
|
|
16
17
|
}): import("react/jsx-runtime").JSX.Element;
|
|
17
18
|
declare namespace QuarterPicker {
|
|
18
19
|
namespace propTypes {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
export default QuarterPopupPicker;
|
|
2
|
-
declare function QuarterPopupPicker({ isOpen, onChangeDate, value, setValue, startDateValue, availableQuarters, }: {
|
|
2
|
+
declare function QuarterPopupPicker({ isOpen, onChangeDate, value, setValue, startDateValue, availableQuarters, startYear, }: {
|
|
3
3
|
isOpen: any;
|
|
4
4
|
onChangeDate: any;
|
|
5
5
|
value: any;
|
|
6
6
|
setValue: any;
|
|
7
7
|
startDateValue: any;
|
|
8
8
|
availableQuarters: any;
|
|
9
|
+
startYear?: number;
|
|
9
10
|
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export const DatePickerContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
2
|
+
export const DatePickerPopup: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
3
|
+
export const DatePickerHeader: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
4
|
+
export const DatePickerSelect: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, never>> & string;
|
|
5
|
+
export const DatePickerCalendar: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
6
|
+
export const DateCell: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|