qlu-20-ui-library 1.1.73 → 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.
- package/dist/components/Charts/StatsChart/Index.d.ts +5 -3
- package/dist/components/CompanyView/CompanyViewFinancialIncomeStatement/RevenueTable/index.d.ts +8 -0
- package/dist/components/CompanyView/CompanyViewFinancialIncomeStatement/index.d.ts +15 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/index.css +1 -1
- package/dist/library.es.js +1517 -1513
- package/dist/library.umd.js +89 -89
- package/package.json +1 -1
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export interface IStatsChart {
|
|
3
|
-
|
|
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;
|
package/dist/components/CompanyView/CompanyViewFinancialIncomeStatement/RevenueTable/index.d.ts
ADDED
|
@@ -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;
|
|
@@ -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';
|