sag_components 2.0.0-beta1 → 2.0.0-beta10

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.
@@ -6,9 +6,34 @@ declare namespace FilterPanel {
6
6
  const availableMonths: PropTypes.Requireable<(string | null | undefined)[]>;
7
7
  const availableYears: PropTypes.Requireable<(string | null | undefined)[]>;
8
8
  const fieldsData: PropTypes.Requireable<(PropTypes.InferProps<{
9
+ disabled: PropTypes.Requireable<boolean>;
10
+ required: PropTypes.Requireable<boolean>;
11
+ inputType: PropTypes.Requireable<string>;
12
+ placeHolder: PropTypes.Requireable<string>;
13
+ xIconShow: PropTypes.Requireable<boolean>;
14
+ label: PropTypes.Requireable<string>;
15
+ labelEmptyValue: PropTypes.Requireable<string>;
9
16
  name: PropTypes.Requireable<string>;
17
+ periodPickerSelectedValue: PropTypes.Requireable<(PropTypes.InferProps<{
18
+ value: PropTypes.Requireable<string>;
19
+ label: PropTypes.Requireable<string>;
20
+ }> | null | undefined)[]>;
21
+ selectedValue: PropTypes.Requireable<(PropTypes.InferProps<{
22
+ value: PropTypes.Requireable<string>;
23
+ label: PropTypes.Requireable<string>;
24
+ }> | null | undefined)[]>;
25
+ orderBy: PropTypes.Requireable<string>;
26
+ elementType: PropTypes.Requireable<string>;
10
27
  value: PropTypes.Requireable<number>;
11
28
  color: PropTypes.Requireable<string>;
29
+ defaultValueYears: PropTypes.Requireable<PropTypes.InferProps<{
30
+ value: PropTypes.Requireable<string>;
31
+ label: PropTypes.Requireable<string>;
32
+ }>>;
33
+ dropdownOptions: PropTypes.Requireable<(PropTypes.InferProps<{
34
+ value: PropTypes.Requireable<string>;
35
+ label: PropTypes.Requireable<string>;
36
+ }> | null | undefined)[]>;
12
37
  }> | null | undefined)[]>;
13
38
  const width: PropTypes.Requireable<string>;
14
39
  const height: PropTypes.Requireable<string>;
@@ -1,69 +1,17 @@
1
1
  export function QuickFilter({ hoverColor, multipleSelection, xIconShow, disabled, error, errorMessage, label, labelColor, placeHolder, width, checkBoxColor, onChange, options, selectedValue, }: {
2
- hoverColor: any;
3
- multipleSelection: any;
4
- xIconShow: any;
5
- disabled: any;
6
- error: any;
7
- errorMessage: any;
8
- label: any;
9
- labelColor: any;
10
- placeHolder: any;
11
- width: any;
12
- checkBoxColor: any;
13
- onChange: any;
14
- options: any;
15
- selectedValue: any;
2
+ hoverColor?: string | undefined;
3
+ multipleSelection?: boolean | undefined;
4
+ xIconShow?: boolean | undefined;
5
+ disabled?: boolean | undefined;
6
+ error?: boolean | undefined;
7
+ errorMessage?: string | undefined;
8
+ label?: string | undefined;
9
+ labelColor?: string | undefined;
10
+ placeHolder?: string | undefined;
11
+ width?: string | undefined;
12
+ checkBoxColor?: string | undefined;
13
+ onChange?: (() => void) | undefined;
14
+ options?: any[] | undefined;
15
+ selectedValue?: any[] | undefined;
16
16
  }): import("react/jsx-runtime").JSX.Element;
17
- export namespace QuickFilter {
18
- namespace propTypes {
19
- const hoverColor: PropTypes.Requireable<string>;
20
- const multipleSelection: PropTypes.Requireable<boolean>;
21
- const disabled: PropTypes.Requireable<boolean>;
22
- const error: PropTypes.Requireable<boolean>;
23
- const errorMessage: string;
24
- const label: PropTypes.Requireable<string>;
25
- const labelColor: PropTypes.Requireable<string>;
26
- const placeHolder: PropTypes.Requireable<string>;
27
- const width: PropTypes.Requireable<string>;
28
- const checkBoxColor: PropTypes.Requireable<string>;
29
- const onChange: PropTypes.Requireable<(...args: any[]) => any>;
30
- const options: PropTypes.Requireable<(PropTypes.InferProps<{
31
- id: PropTypes.Requireable<string>;
32
- label: PropTypes.Requireable<string>;
33
- }> | null | undefined)[]>;
34
- const selectedValue: PropTypes.Requireable<(PropTypes.InferProps<{
35
- id: PropTypes.Requireable<string>;
36
- label: PropTypes.Requireable<string>;
37
- }> | null | undefined)[]>;
38
- }
39
- namespace defaultProps {
40
- const hoverColor_1: string;
41
- export { hoverColor_1 as hoverColor };
42
- const multipleSelection_1: boolean;
43
- export { multipleSelection_1 as multipleSelection };
44
- const disabled_1: boolean;
45
- export { disabled_1 as disabled };
46
- const error_1: boolean;
47
- export { error_1 as error };
48
- const errorMessage_1: string;
49
- export { errorMessage_1 as errorMessage };
50
- const label_1: string;
51
- export { label_1 as label };
52
- const labelColor_1: string;
53
- export { labelColor_1 as labelColor };
54
- const placeHolder_1: string;
55
- export { placeHolder_1 as placeHolder };
56
- const width_1: string;
57
- export { width_1 as width };
58
- const checkBoxColor_1: string;
59
- export { checkBoxColor_1 as checkBoxColor };
60
- export function onChange_1(): void;
61
- export { onChange_1 as onChange };
62
- const options_1: never[];
63
- export { options_1 as options };
64
- const selectedValue_1: never[];
65
- export { selectedValue_1 as selectedValue };
66
- }
67
- }
68
17
  export default QuickFilter;
69
- import PropTypes from "prop-types";
@@ -1 +1,23 @@
1
1
  export { default as Button } from "./components/Button/Button.jsx";
2
+ export { default as PieChart } from "./components/PieChart/PieChart.jsx";
3
+ export { default as EventDetailsCard } from "./components/EventDetailsCard/EventDetailsCard.jsx";
4
+ export { default as LinnerDataBox } from "./components/LinnerDataBox/LinnerDataBox.jsx";
5
+ export { default as TabMenu } from "./components/TabMenu/TabMenu.jsx";
6
+ export { default as FilterPanel } from "./components/FilterPanel/FilterPanel.jsx";
7
+ export { default as ReportTable } from "./components/ReportTable/ReportTable.jsx";
8
+ export { default as EventList } from "./components/EventList/EventList.jsx";
9
+ export { default as BannerEventBoxList } from "./components/BannerEventBoxList/BannerEventBoxList.jsx";
10
+ export { default as DialogOverlay } from "./components/DialogOverlay/DialogOverlay.jsx";
11
+ export { default as CollapseHeader } from "./components/CollapseHeader/CollapseHeader.jsx";
12
+ export { default as QuickFilter } from "./components/QuickFilter/QuickFilter.jsx";
13
+ export { default as OneColumnContainer } from "./components/OneColumnContainer/OneColumnContainer.jsx";
14
+ export { default as BarChartsByWeeks } from "./components/BarChartsByWeeks/BarChartsByWeeks.jsx";
15
+ export { default as PopupCharts } from "./components/PopupCharts/PopupCharts.jsx";
16
+ export { default as TotalDoughnutChart } from "./components/TotalDoughnutChart/TotalDoughnutChart.jsx";
17
+ export { default as TopToggleList } from "./components/TopToggleList/TopToggleList.jsx";
18
+ export { default as MarketShareDescription } from "./components/MarketShareDescription/MarketShareDescription.jsx";
19
+ export { default as Heatmap } from "./components/Heatmap/Heatmap.jsx";
20
+ export { default as TotalHorizontalCharts } from "./components/TotalHorizontalCharts/TotalHorizontalCharts.jsx";
21
+ export { default as IconButton } from "./components/IconButton/IconButton.jsx";
22
+ export { default as DoublePanelDataRow } from "./components/DoublePanelDataRow/DoublePanelDataRow.jsx";
23
+ export { default as BarChart } from "./components/BarChart/BarChart.jsx";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sag_components",
3
- "version": "2.0.0-beta1",
3
+ "version": "2.0.0-beta10",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",