qlu-20-ui-library 1.1.72 → 1.1.74

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.
@@ -1,9 +1,11 @@
1
1
  /// <reference types="react" />
2
2
  export interface IStatsChart {
3
- stats: {};
3
+ x: number;
4
+ y: number;
4
5
  }
5
6
  interface StatsChartProps {
6
- stats: IStatsChart;
7
+ stats: IStatsChart[];
8
+ median: number;
7
9
  }
8
- declare const StatsChart: ({ stats }: StatsChartProps) => JSX.Element;
10
+ declare const StatsChart: ({ stats, median }: StatsChartProps) => JSX.Element;
9
11
  export default StatsChart;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ interface ChevronDropDownProps {
3
+ dropdownItemList: string[];
4
+ onLabelClick: (value: string) => void;
5
+ }
6
+ declare const ChevronDropDown: ({ dropdownItemList, onLabelClick }: ChevronDropDownProps) => JSX.Element;
7
+ export default ChevronDropDown;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import { Header } from '..';
3
+ interface IRevenueTableProp {
4
+ revenueHeader: Header[];
5
+ revenueData: any;
6
+ }
7
+ declare const RevenueTable: ({ revenueHeader, revenueData }: IRevenueTableProp) => JSX.Element;
8
+ export default RevenueTable;
@@ -0,0 +1,15 @@
1
+ /// <reference types="react" />
2
+ export interface Header {
3
+ Header: string;
4
+ accessor: string;
5
+ }
6
+ interface ICompanyViewFinancialIncomeStatementProp {
7
+ revenueHeaders: Header[];
8
+ expensesHeaders: Header[];
9
+ revenueData: any;
10
+ expensesData: any;
11
+ isError: boolean;
12
+ isLoading: boolean;
13
+ }
14
+ declare const CompanyViewFinancialIncomeStatement: ({ expensesHeaders, revenueHeaders, revenueData, expensesData, isError, isLoading, }: ICompanyViewFinancialIncomeStatementProp) => JSX.Element;
15
+ export default CompanyViewFinancialIncomeStatement;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ interface ArrowDownProps {
3
+ className?: string;
4
+ width?: string;
5
+ height?: string;
6
+ }
7
+ declare const ArrowDown: ({ className, width, height, }: ArrowDownProps) => JSX.Element;
8
+ export default ArrowDown;
@@ -10,6 +10,8 @@ interface TopNavbarProps {
10
10
  topNavbarActiveTab: TopNavbarButtonTypes;
11
11
  props?: object;
12
12
  navbarTabs?: NavbarProps[];
13
+ dropdownItemList: string[];
14
+ onLabelClick: (value: string) => void;
13
15
  }
14
- declare const TopNavbar: ({ props, navbarTabs }: TopNavbarProps) => JSX.Element;
16
+ declare const TopNavbar: ({ props, navbarTabs, dropdownItemList, onLabelClick }: TopNavbarProps) => JSX.Element;
15
17
  export default TopNavbar;
@@ -131,3 +131,5 @@ export { default as CompanyViewFinancialBody } from './CompanyView/CompanyViewFi
131
131
  export { default as LineChart } from './Charts/LineChart';
132
132
  export { default as CompanyViewFinancialPrivateTabs } from './CompanyView/CompanyViewFinancialPrivateTabs';
133
133
  export { default as StatsChart } from './Charts/StatsChart/Index';
134
+ export { default as CompanyViewFinancialIncomeStatement } from './CompanyView/CompanyViewFinancialIncomeStatement';
135
+ export { default as CompanyViewFinancialGenericTable } from './CompanyView/CompanyViewFinancialIncomeStatement';