qlu-20-ui-library 1.1.63 → 1.1.65

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.
@@ -2,7 +2,7 @@ export interface IcompanyBarChart {
2
2
  quater: string;
3
3
  amount: number;
4
4
  }
5
- interface companyBarChartFinancialTabProp {
5
+ export interface companyBarChartFinancialTabProp {
6
6
  revenues: IcompanyBarChart[];
7
7
  QoQlatest: string;
8
8
  QoQ12Month: string;
@@ -2,8 +2,8 @@ export interface IcompanyLineChart {
2
2
  quater: string;
3
3
  amount: number;
4
4
  }
5
- interface companyLineChartFinancialTabProp {
6
- revenues: IcompanyLineChart[];
5
+ export interface companyLineChartFinancialTabProp {
6
+ stockPerformance: IcompanyLineChart[];
7
7
  beta: string;
8
8
  peRatio: string;
9
9
  ePS: string;
@@ -12,5 +12,5 @@ interface companyLineChartFinancialTabProp {
12
12
  marketCap: string;
13
13
  }
14
14
  export declare const options: any;
15
- export declare const CompanyLineChartFinancialTab: ({ revenues, beta, peRatio, ePS, priceSales, weekChange, marketCap, }: companyLineChartFinancialTabProp) => import("react/jsx-runtime").JSX.Element;
15
+ export declare const CompanyLineChartFinancialTab: ({ stockPerformance, beta, peRatio, ePS, priceSales, weekChange, marketCap, }: companyLineChartFinancialTabProp) => import("react/jsx-runtime").JSX.Element;
16
16
  export default CompanyLineChartFinancialTab;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ interface CompanyViewFinancialProps {
3
+ onCompanyViewFinancialTabClick: (tab: string) => void;
4
+ activeCompanyViewFinancialTab: 'Summary' | 'IncomeStatement' | 'BalanceSheet' | 'CashFlow';
5
+ children: React.ReactNode;
6
+ }
7
+ declare const CompanyViewFinancial: React.FC<CompanyViewFinancialProps>;
8
+ export default CompanyViewFinancial;
@@ -0,0 +1,9 @@
1
+ import { companyBarChartFinancialTabProp } from '../../CompanyBarChartFinancialTab';
2
+ import { companyLineChartFinancialTabProp } from '../../CompanyLineChartFinancialTab';
3
+ interface CompanyViewFinancialSummaryProps {
4
+ stockPerformance: companyLineChartFinancialTabProp;
5
+ Revenue: companyBarChartFinancialTabProp;
6
+ earning: companyBarChartFinancialTabProp;
7
+ }
8
+ declare const CompanyViewFinancialSummary: ({ stockPerformance, Revenue, earning }: CompanyViewFinancialSummaryProps) => import("react/jsx-runtime").JSX.Element;
9
+ export default CompanyViewFinancialSummary;
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ interface DropDownButtonProps {
3
+ dropDownText: string;
4
+ iconleft?: boolean;
5
+ children: React.ReactNode;
6
+ dropdownOnClickHandler: () => void;
7
+ }
8
+ declare const DropDownButton: ({ dropDownText, children }: DropDownButtonProps) => import("react/jsx-runtime").JSX.Element;
9
+ export default DropDownButton;
@@ -4,52 +4,6 @@ export interface IpersonStatisticsChart {
4
4
  interface personStatisticsChartProps {
5
5
  stats: IpersonStatisticsChart;
6
6
  }
7
- export declare const options: {
8
- responsive: boolean;
9
- aspectRatio: number;
10
- maintainAspectRatio: boolean;
11
- scales: {
12
- y: {
13
- grace: string;
14
- beginAtZero: boolean;
15
- border: {
16
- color: string;
17
- position: string;
18
- };
19
- grid: {
20
- display: boolean;
21
- };
22
- ticks: {
23
- display: boolean;
24
- };
25
- };
26
- x: {
27
- grid: {
28
- color: string;
29
- borderColor: string;
30
- tickColor: string;
31
- };
32
- ticks: {
33
- color: string;
34
- };
35
- };
36
- };
37
- plugins: {
38
- legend: {
39
- display: boolean;
40
- };
41
- tooltip: {
42
- enabled: boolean;
43
- backgroundColor: string;
44
- titleColor: string;
45
- };
46
- title: {
47
- display: boolean;
48
- };
49
- filler: {
50
- propagate: boolean;
51
- };
52
- };
53
- };
7
+ export declare const options: any;
54
8
  export declare const PersonStatisticsChart: ({ stats }: personStatisticsChartProps) => import("react/jsx-runtime").JSX.Element;
55
9
  export default PersonStatisticsChart;
@@ -8,6 +8,7 @@ interface PersonViewPayProps {
8
8
  tableData: object;
9
9
  yearlyPayData: object;
10
10
  titlePayData: object;
11
+ currentTitle: string;
11
12
  }
12
- declare const PersonViewPay: ({ tableDataIsLoading, yearlyPayDataIsLoading, titlePayDataIsLoading, yearlyPayData, titlePayData, tableDataIsError, yearlyPayDataIsError, titlePayDataIsError, tableData, }: PersonViewPayProps) => import("react/jsx-runtime").JSX.Element;
13
+ declare const PersonViewPay: ({ tableDataIsLoading, yearlyPayDataIsLoading, titlePayDataIsLoading, yearlyPayData, titlePayData, tableDataIsError, yearlyPayDataIsError, titlePayDataIsError, tableData, currentTitle, }: PersonViewPayProps) => import("react/jsx-runtime").JSX.Element;
13
14
  export default PersonViewPay;
@@ -124,3 +124,6 @@ export { default as CompanyCombinedChartFinancialTab } from './CompanyCombinedCh
124
124
  export { default as PersonStatisticsChart } from './PersonView/PersonStatisticsChart';
125
125
  export { default as PersonStatsView } from './PersonView/PersonStatsView';
126
126
  export { default as IncomeStatement } from './Financials/IncomeStatement';
127
+ export { default as CompanyViewFinancial } from './CompanyView/CompanyViewFinancial';
128
+ export { default as DropDownButton } from './DropDownButton';
129
+ export { default as CompanyViewFinancialSummary } from './CompanyView/CompanyViewFinancialSummary';