sag_components 2.0.0-beta321 → 2.0.0-beta323

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 CHANGED
@@ -167,6 +167,7 @@ declare namespace FilterPanel {
167
167
  const useExternalFilterState: PropTypes.Requireable<boolean>;
168
168
  const showShadow: PropTypes.Requireable<boolean>;
169
169
  const tooltipTextGoButton: PropTypes.Requireable<string>;
170
+ const dropdownHeight: PropTypes.Requireable<string>;
170
171
  }
171
172
  namespace defaultProps {
172
173
  const availableQuarters_1: string[];
@@ -1059,7 +1060,7 @@ declare function LinkButton({ text, type, size, height, width, disabled, textCol
1059
1060
  width?: string;
1060
1061
  disabled?: boolean;
1061
1062
  textColor?: string;
1062
- onClick: any;
1063
+ onClick?: () => void;
1063
1064
  leftIcon?: string;
1064
1065
  rightIcon?: string;
1065
1066
  }): react_jsx_runtime.JSX.Element;
@@ -1722,4 +1723,385 @@ declare function CheckBox(props: any): react_jsx_runtime.JSX.Element;
1722
1723
 
1723
1724
  declare function NoDataFoundMessage(props: any): react_jsx_runtime.JSX.Element;
1724
1725
 
1725
- export { AdvancedThresholds, Analytics, AreaChart, BannerEventBoxList, BarChart, BarChartTwoRows, BarChartWithAreaChart, BarChartsByWeeks, BatteryChart, BreakdownPanel, BrushChart, BubbleChart, Budgets, Build, Button, Campaigns, CheckBox, CollapseData, CollapseHeader, ContainerTable, Coupons, CustomerSegments, Dashboard, DialogOverlay, DoubleBarSingleLine, DoublePanelDataRow, DownloadProgress, DropdownNew, EventDetailsCard, EventList, Execute, FilterPanel, FilterPop, GroupBuilder, Heatmap, IconButton, Input, InsightsCarousel, ItemManagerPanel, ItemsStores, LinkButton, LinnerDataBox, MarketShareDescription, MenuRoute, MessageBox, ModalDrawer, ModalWithOverlay, NoDataFoundMessage, OneColumnContainer, OverlayDropdown, PerformanceAnalyticsLegend, PieChart, PopupCharts, PreTestWhatIf, QuickFilter, QuickFilterCards, RangePicker, RangePop, ReportTable, RulesEngine, SampleRunEngine, SearchInput, SingleBarLineCharts, SortPop, TabMenu, Table, Tag, ToasterMessageBox, ToggleSwitch, Tooltip, TopToggleList, TotalDoughnutChart, TotalHorizontalCharts, Track, TwoBarCharts, WeeksPicker };
1726
+ declare function SagIconButton(props: any): react_jsx_runtime.JSX.Element;
1727
+ declare namespace SagIconButton {
1728
+ namespace propTypes {
1729
+ const className: PropTypes.Requireable<string>;
1730
+ const iconName: PropTypes.Requireable<string>;
1731
+ const buttonText: PropTypes.Requireable<string>;
1732
+ const height: PropTypes.Requireable<string>;
1733
+ const color: PropTypes.Requireable<string>;
1734
+ const backgroundColor: PropTypes.Requireable<string>;
1735
+ const activeColor: PropTypes.Requireable<string>;
1736
+ const iconHeight: PropTypes.Requireable<number>;
1737
+ const iconWidth: PropTypes.Requireable<number>;
1738
+ const openState: PropTypes.Requireable<boolean>;
1739
+ const disabled: PropTypes.Requireable<boolean>;
1740
+ const onButtonClick: PropTypes.Requireable<(...args: any[]) => any>;
1741
+ }
1742
+ namespace defaultProps {
1743
+ const className_1: string;
1744
+ export { className_1 as className };
1745
+ const iconName_1: string;
1746
+ export { iconName_1 as iconName };
1747
+ const buttonText_1: string;
1748
+ export { buttonText_1 as buttonText };
1749
+ const height_1: string;
1750
+ export { height_1 as height };
1751
+ const color_1: string;
1752
+ export { color_1 as color };
1753
+ const activeColor_1: string;
1754
+ export { activeColor_1 as activeColor };
1755
+ const backgroundColor_1: string;
1756
+ export { backgroundColor_1 as backgroundColor };
1757
+ const iconHeight_1: number;
1758
+ export { iconHeight_1 as iconHeight };
1759
+ const iconWidth_1: number;
1760
+ export { iconWidth_1 as iconWidth };
1761
+ const openState_1: boolean;
1762
+ export { openState_1 as openState };
1763
+ const disabled_1: boolean;
1764
+ export { disabled_1 as disabled };
1765
+ export function onButtonClick_1(): void;
1766
+ export { onButtonClick_1 as onButtonClick };
1767
+ }
1768
+ }
1769
+
1770
+ declare function SegmentedButton(props: any): react_jsx_runtime.JSX.Element;
1771
+ declare namespace SegmentedButton {
1772
+ namespace propTypes {
1773
+ const name: PropTypes.Requireable<string>;
1774
+ const options: PropTypes.Requireable<PropTypes.InferProps<{
1775
+ value: PropTypes.Requireable<string>;
1776
+ }>[]>;
1777
+ const width: PropTypes.Requireable<number>;
1778
+ const height: PropTypes.Requireable<number>;
1779
+ const controlradius: PropTypes.Requireable<number>;
1780
+ const segmentradius: PropTypes.Requireable<number>;
1781
+ const gap: PropTypes.Requireable<string>;
1782
+ const fontSize: PropTypes.Requireable<number>;
1783
+ const selectedsegmentcolor: PropTypes.Requireable<string>;
1784
+ const selectedtextcolor: PropTypes.Requireable<string>;
1785
+ const unselectedtextcolor: PropTypes.Requireable<string>;
1786
+ const defaultIndex: PropTypes.Requireable<number>;
1787
+ const onClick: PropTypes.Requireable<(...args: any[]) => any>;
1788
+ }
1789
+ namespace defaultProps {
1790
+ const name_1: string;
1791
+ export { name_1 as name };
1792
+ const options_1: {
1793
+ value: string;
1794
+ }[];
1795
+ export { options_1 as options };
1796
+ const width_1: number;
1797
+ export { width_1 as width };
1798
+ const height_1: number;
1799
+ export { height_1 as height };
1800
+ const controlradius_1: number;
1801
+ export { controlradius_1 as controlradius };
1802
+ const segmentradius_1: number;
1803
+ export { segmentradius_1 as segmentradius };
1804
+ const gap_1: string;
1805
+ export { gap_1 as gap };
1806
+ const fontSize_1: number;
1807
+ export { fontSize_1 as fontSize };
1808
+ const selectedsegmentcolor_1: string;
1809
+ export { selectedsegmentcolor_1 as selectedsegmentcolor };
1810
+ const selectedtextcolor_1: string;
1811
+ export { selectedtextcolor_1 as selectedtextcolor };
1812
+ const unselectedtextcolor_1: string;
1813
+ export { unselectedtextcolor_1 as unselectedtextcolor };
1814
+ const defaultIndex_1: number;
1815
+ export { defaultIndex_1 as defaultIndex };
1816
+ export function onClick_1(): void;
1817
+ export { onClick_1 as onClick };
1818
+ }
1819
+ }
1820
+
1821
+ declare function TotalBenchmark(props: any): react_jsx_runtime.JSX.Element;
1822
+ declare namespace TotalBenchmark {
1823
+ namespace propTypes {
1824
+ const data: PropTypes.Requireable<PropTypes.InferProps<{
1825
+ title: PropTypes.Requireable<string>;
1826
+ value: PropTypes.Requireable<number>;
1827
+ totalValue: PropTypes.Requireable<number>;
1828
+ benchmarkValue: PropTypes.Requireable<number>;
1829
+ }>>;
1830
+ const dotCut: PropTypes.Requireable<boolean>;
1831
+ const addingBenchmark: PropTypes.Requireable<boolean>;
1832
+ const width: PropTypes.Requireable<string>;
1833
+ const height: PropTypes.Requireable<string>;
1834
+ const textcolor: PropTypes.Requireable<string>;
1835
+ const noDataText: PropTypes.Requireable<string>;
1836
+ }
1837
+ namespace defaultProps {
1838
+ export namespace data_1 {
1839
+ const title: string;
1840
+ const value: number;
1841
+ const totalValue: number;
1842
+ const benchmarkValue: number;
1843
+ }
1844
+ export { data_1 as data };
1845
+ const dotCut_1: boolean;
1846
+ export { dotCut_1 as dotCut };
1847
+ const width_1: string;
1848
+ export { width_1 as width };
1849
+ const height_1: string;
1850
+ export { height_1 as height };
1851
+ const addingBenchmark_1: boolean;
1852
+ export { addingBenchmark_1 as addingBenchmark };
1853
+ const textcolor_1: string;
1854
+ export { textcolor_1 as textcolor };
1855
+ const noDataText_1: string;
1856
+ export { noDataText_1 as noDataText };
1857
+ }
1858
+ }
1859
+
1860
+ declare function TotalBenchmarkArrows(props: any): react_jsx_runtime.JSX.Element;
1861
+ declare namespace TotalBenchmarkArrows {
1862
+ namespace propTypes {
1863
+ const title: PropTypes.Requireable<string>;
1864
+ const value: PropTypes.Requireable<number>;
1865
+ const addingBenchmark: PropTypes.Requireable<boolean>;
1866
+ const benchmarkTotalValue: PropTypes.Requireable<number>;
1867
+ const benchmarkValue: PropTypes.Requireable<number>;
1868
+ const detailsTitle: PropTypes.Requireable<string>;
1869
+ const detailsData: PropTypes.Requireable<PropTypes.InferProps<{
1870
+ title: PropTypes.Requireable<string>;
1871
+ value: PropTypes.Requireable<number>;
1872
+ }>[]>;
1873
+ const dotCut: PropTypes.Requireable<boolean>;
1874
+ const width: PropTypes.Requireable<string>;
1875
+ const height: PropTypes.Requireable<string>;
1876
+ const textcolor: PropTypes.Requireable<string>;
1877
+ const noDataText: PropTypes.Requireable<string>;
1878
+ }
1879
+ namespace defaultProps {
1880
+ const title_1: string;
1881
+ export { title_1 as title };
1882
+ const value_1: number;
1883
+ export { value_1 as value };
1884
+ const addingBenchmark_1: number;
1885
+ export { addingBenchmark_1 as addingBenchmark };
1886
+ const benchmarkTotalValue_1: number;
1887
+ export { benchmarkTotalValue_1 as benchmarkTotalValue };
1888
+ const benchmarkValue_1: number;
1889
+ export { benchmarkValue_1 as benchmarkValue };
1890
+ const detailsTitle_1: string;
1891
+ export { detailsTitle_1 as detailsTitle };
1892
+ const detailsData_1: {
1893
+ title: string;
1894
+ value: number;
1895
+ }[];
1896
+ export { detailsData_1 as detailsData };
1897
+ const dotCut_1: boolean;
1898
+ export { dotCut_1 as dotCut };
1899
+ const width_1: string;
1900
+ export { width_1 as width };
1901
+ const height_1: string;
1902
+ export { height_1 as height };
1903
+ const textcolor_1: string;
1904
+ export { textcolor_1 as textcolor };
1905
+ const noDataText_1: string;
1906
+ export { noDataText_1 as noDataText };
1907
+ }
1908
+ }
1909
+
1910
+ declare function TotalBenchmarkBarchart(props: any): react_jsx_runtime.JSX.Element;
1911
+ declare namespace TotalBenchmarkBarchart {
1912
+ namespace propTypes {
1913
+ const title: PropTypes.Requireable<string>;
1914
+ const value: PropTypes.Requireable<number>;
1915
+ const addingBenchmark: PropTypes.Requireable<boolean>;
1916
+ const benchmarkTotalValue: PropTypes.Requireable<number>;
1917
+ const benchmarkValue: PropTypes.Requireable<number>;
1918
+ const currency: PropTypes.Requireable<boolean>;
1919
+ const currencyType: PropTypes.Requireable<string>;
1920
+ const barChartData: PropTypes.Requireable<PropTypes.InferProps<{
1921
+ title: PropTypes.Requireable<string>;
1922
+ value: PropTypes.Requireable<number>;
1923
+ color: PropTypes.Requireable<string>;
1924
+ }>[]>;
1925
+ const dotCut: PropTypes.Requireable<boolean>;
1926
+ const width: PropTypes.Requireable<string>;
1927
+ const height: PropTypes.Requireable<string>;
1928
+ const textcolor: PropTypes.Requireable<string>;
1929
+ const noDataText: PropTypes.Requireable<string>;
1930
+ }
1931
+ namespace defaultProps {
1932
+ const title_1: string;
1933
+ export { title_1 as title };
1934
+ const value_1: number;
1935
+ export { value_1 as value };
1936
+ const addingBenchmark_1: boolean;
1937
+ export { addingBenchmark_1 as addingBenchmark };
1938
+ const benchmarkTotalValue_1: number;
1939
+ export { benchmarkTotalValue_1 as benchmarkTotalValue };
1940
+ const benchmarkValue_1: number;
1941
+ export { benchmarkValue_1 as benchmarkValue };
1942
+ const currency_1: boolean;
1943
+ export { currency_1 as currency };
1944
+ const currencyType_1: string;
1945
+ export { currencyType_1 as currencyType };
1946
+ const barChartData_1: {
1947
+ title: string;
1948
+ value: number;
1949
+ color: string;
1950
+ }[];
1951
+ export { barChartData_1 as barChartData };
1952
+ const dotCut_1: boolean;
1953
+ export { dotCut_1 as dotCut };
1954
+ const width_1: string;
1955
+ export { width_1 as width };
1956
+ const height_1: string;
1957
+ export { height_1 as height };
1958
+ const textcolor_1: string;
1959
+ export { textcolor_1 as textcolor };
1960
+ const noDataText_1: string;
1961
+ export { noDataText_1 as noDataText };
1962
+ }
1963
+ }
1964
+
1965
+ declare function TotalBenchmarkAreachart(props: any): react_jsx_runtime.JSX.Element;
1966
+ declare namespace TotalBenchmarkAreachart {
1967
+ namespace propTypes {
1968
+ const title: PropTypes.Requireable<string>;
1969
+ const value: PropTypes.Requireable<number>;
1970
+ const arrowSign: PropTypes.Requireable<string>;
1971
+ const addingBenchmark: PropTypes.Requireable<boolean>;
1972
+ const benchmarkTotalValue: PropTypes.Requireable<number>;
1973
+ const benchmarkValue: PropTypes.Requireable<number>;
1974
+ const areaChartData: PropTypes.Requireable<PropTypes.InferProps<{
1975
+ title: PropTypes.Requireable<string>;
1976
+ value1: PropTypes.Requireable<number>;
1977
+ value2: PropTypes.Requireable<number>;
1978
+ }>[]>;
1979
+ const width: PropTypes.Requireable<string>;
1980
+ const height: PropTypes.Requireable<string>;
1981
+ const textcolor: PropTypes.Requireable<string>;
1982
+ const areaChart1Color: PropTypes.Requireable<string>;
1983
+ const areaChart2Color: PropTypes.Requireable<string>;
1984
+ const xselectedColor: PropTypes.Requireable<string>;
1985
+ const fillChart1Color: PropTypes.Requireable<string>;
1986
+ const fillChart2Color: PropTypes.Requireable<string>;
1987
+ const startOffset: PropTypes.Requireable<string>;
1988
+ const endOffset: PropTypes.Requireable<string>;
1989
+ const opacity: PropTypes.Requireable<string>;
1990
+ const value1Title: PropTypes.Requireable<string>;
1991
+ const value2Title: PropTypes.Requireable<string>;
1992
+ const noDataText: PropTypes.Requireable<string>;
1993
+ const startWeekRange: PropTypes.Requireable<string>;
1994
+ const endWeekRange: PropTypes.Requireable<string>;
1995
+ }
1996
+ namespace defaultProps {
1997
+ const title_1: string;
1998
+ export { title_1 as title };
1999
+ const value_1: number;
2000
+ export { value_1 as value };
2001
+ const arrowSign_1: string;
2002
+ export { arrowSign_1 as arrowSign };
2003
+ const addingBenchmark_1: boolean;
2004
+ export { addingBenchmark_1 as addingBenchmark };
2005
+ const benchmarkTotalValue_1: string;
2006
+ export { benchmarkTotalValue_1 as benchmarkTotalValue };
2007
+ const benchmarkValue_1: any;
2008
+ export { benchmarkValue_1 as benchmarkValue };
2009
+ const areaChartData_1: {
2010
+ title: string;
2011
+ value1: number;
2012
+ value2: number;
2013
+ }[];
2014
+ export { areaChartData_1 as areaChartData };
2015
+ const width_1: string;
2016
+ export { width_1 as width };
2017
+ const height_1: string;
2018
+ export { height_1 as height };
2019
+ const textcolor_1: string;
2020
+ export { textcolor_1 as textcolor };
2021
+ const areaChart1Color_1: string;
2022
+ export { areaChart1Color_1 as areaChart1Color };
2023
+ const areaChart2Color_1: string;
2024
+ export { areaChart2Color_1 as areaChart2Color };
2025
+ const xselectedColor_1: string;
2026
+ export { xselectedColor_1 as xselectedColor };
2027
+ const fillChart1Color_1: string;
2028
+ export { fillChart1Color_1 as fillChart1Color };
2029
+ const fillChart2Color_1: string;
2030
+ export { fillChart2Color_1 as fillChart2Color };
2031
+ const startOffset_1: string;
2032
+ export { startOffset_1 as startOffset };
2033
+ const endOffset_1: string;
2034
+ export { endOffset_1 as endOffset };
2035
+ const opacity_1: string;
2036
+ export { opacity_1 as opacity };
2037
+ const value1Title_1: string;
2038
+ export { value1Title_1 as value1Title };
2039
+ const value2Title_1: string;
2040
+ export { value2Title_1 as value2Title };
2041
+ const noDataText_1: string;
2042
+ export { noDataText_1 as noDataText };
2043
+ const startWeekRange_1: number;
2044
+ export { startWeekRange_1 as startWeekRange };
2045
+ const endWeekRange_1: number;
2046
+ export { endWeekRange_1 as endWeekRange };
2047
+ }
2048
+ }
2049
+
2050
+ declare function KpiFilter(props: any): react_jsx_runtime.JSX.Element;
2051
+ declare namespace KpiFilter {
2052
+ namespace propTypes {
2053
+ const mainTitle: PropTypes.Requireable<string>;
2054
+ const periodTitle: PropTypes.Requireable<string>;
2055
+ const hidePeriod: PropTypes.Requireable<boolean>;
2056
+ const kpiData: PropTypes.Requireable<PropTypes.InferProps<{
2057
+ label: PropTypes.Requireable<string>;
2058
+ checked: PropTypes.Requireable<boolean>;
2059
+ disabled: PropTypes.Requireable<boolean>;
2060
+ }>[]>;
2061
+ const height: PropTypes.Requireable<string>;
2062
+ const width: PropTypes.Requireable<string>;
2063
+ const buttonsIconColor: PropTypes.Requireable<string>;
2064
+ const buttonsBorderColor: PropTypes.Requireable<string>;
2065
+ const buttonsTextColorChecked: PropTypes.Requireable<string>;
2066
+ const buttonsTextColorUnchecked: PropTypes.Requireable<string>;
2067
+ const buttonsBackgroundColorChecked: PropTypes.Requireable<string>;
2068
+ const buttonsBackgroundColorUnchecked: PropTypes.Requireable<string>;
2069
+ const onClick: PropTypes.Requireable<(...args: any[]) => any>;
2070
+ const onClickPeriod: PropTypes.Requireable<(...args: any[]) => any>;
2071
+ const selectAllIgnoreList: PropTypes.Requireable<string[]>;
2072
+ }
2073
+ namespace defaultProps {
2074
+ const mainTitle_1: string;
2075
+ export { mainTitle_1 as mainTitle };
2076
+ const periodTitle_1: string;
2077
+ export { periodTitle_1 as periodTitle };
2078
+ const hidePeriod_1: boolean;
2079
+ export { hidePeriod_1 as hidePeriod };
2080
+ const kpiData_1: any[];
2081
+ export { kpiData_1 as kpiData };
2082
+ const width_1: string;
2083
+ export { width_1 as width };
2084
+ const height_1: string;
2085
+ export { height_1 as height };
2086
+ const buttonsIconColor_1: string;
2087
+ export { buttonsIconColor_1 as buttonsIconColor };
2088
+ const buttonsBorderColor_1: string;
2089
+ export { buttonsBorderColor_1 as buttonsBorderColor };
2090
+ const buttonsTextColorChecked_1: string;
2091
+ export { buttonsTextColorChecked_1 as buttonsTextColorChecked };
2092
+ const buttonsTextColorUnchecked_1: string;
2093
+ export { buttonsTextColorUnchecked_1 as buttonsTextColorUnchecked };
2094
+ const buttonsBackgroundColorChecked_1: string;
2095
+ export { buttonsBackgroundColorChecked_1 as buttonsBackgroundColorChecked };
2096
+ const buttonsBackgroundColorUnchecked_1: string;
2097
+ export { buttonsBackgroundColorUnchecked_1 as buttonsBackgroundColorUnchecked };
2098
+ export function onClick_1(): void;
2099
+ export { onClick_1 as onClick };
2100
+ export function onClickPeriod_1(): void;
2101
+ export { onClickPeriod_1 as onClickPeriod };
2102
+ const selectAllIgnoreList_1: any[];
2103
+ export { selectAllIgnoreList_1 as selectAllIgnoreList };
2104
+ }
2105
+ }
2106
+
2107
+ export { AdvancedThresholds, Analytics, AreaChart, BannerEventBoxList, BarChart, BarChartTwoRows, BarChartWithAreaChart, BarChartsByWeeks, BatteryChart, BreakdownPanel, BrushChart, BubbleChart, Budgets, Build, Button, Campaigns, CheckBox, CollapseData, CollapseHeader, ContainerTable, Coupons, CustomerSegments, Dashboard, DialogOverlay, DoubleBarSingleLine, DoublePanelDataRow, DownloadProgress, DropdownNew, EventDetailsCard, EventList, Execute, FilterPanel, FilterPop, GroupBuilder, Heatmap, IconButton, Input, InsightsCarousel, ItemManagerPanel, ItemsStores, KpiFilter, LinkButton, LinnerDataBox, MarketShareDescription, MenuRoute, MessageBox, ModalDrawer, ModalWithOverlay, NoDataFoundMessage, OneColumnContainer, OverlayDropdown, PerformanceAnalyticsLegend, PieChart, PopupCharts, PreTestWhatIf, QuickFilter, QuickFilterCards, RangePicker, RangePop, ReportTable, RulesEngine, SagIconButton, SampleRunEngine, SearchInput, SegmentedButton, SingleBarLineCharts, SortPop, TabMenu, Table, Tag, ToasterMessageBox, ToggleSwitch, Tooltip, TopToggleList, TotalBenchmark, TotalBenchmarkAreachart, TotalBenchmarkArrows, TotalBenchmarkBarchart, TotalDoughnutChart, TotalHorizontalCharts, Track, TwoBarCharts, WeeksPicker };