qlu-20-ui-library 1.1.89 → 1.1.94
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/AssignmentCreationCard/index.d.ts +1 -1
- package/dist/components/Charts/PeerSalaryChart/index.d.ts +13 -0
- package/dist/components/Charts/RadarChart/index.d.ts +9 -0
- package/dist/components/ClickableFilterBadge/index.d.ts +7 -0
- package/dist/components/CompanyBarChartFinancialTab/index.d.ts +1 -1
- package/dist/components/CompanyCombinedChartFinancialTab/index.d.ts +1 -2
- package/dist/components/CompanyView/CompanyViewFinancialSummary/index.d.ts +3 -3
- package/dist/components/InputFieldWithSvg/index.d.ts +3 -2
- package/dist/components/PersonView/PersonStatisticsChart/index.d.ts +1 -1
- package/dist/components/QluLogoWithText/index.d.ts +2 -0
- package/dist/components/SecondaryButton/index.d.ts +3 -3
- package/dist/components/index.d.ts +4 -0
- package/dist/index.css +1 -1
- package/dist/library.es.js +21419 -37816
- package/dist/library.umd.js +94 -186
- package/dist/utils.d.ts +1 -0
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ interface AssignmentCreationProps {
|
|
|
3
3
|
assigneeName: string;
|
|
4
4
|
assigneeMail: string;
|
|
5
5
|
containerClassName?: string;
|
|
6
|
-
iconType:
|
|
6
|
+
iconType: "plus" | "cross";
|
|
7
7
|
isLoading: boolean;
|
|
8
8
|
onClick: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
|
|
9
9
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export interface ILineChart {
|
|
2
|
+
Xaxis: string;
|
|
3
|
+
Yaxis: number;
|
|
4
|
+
}
|
|
5
|
+
export interface PeerSalaryChartProp {
|
|
6
|
+
Data1: ILineChart[];
|
|
7
|
+
Data2: ILineChart[];
|
|
8
|
+
data1Label?: string;
|
|
9
|
+
data2Label?: string;
|
|
10
|
+
fill: boolean;
|
|
11
|
+
}
|
|
12
|
+
export declare const PeerSalaryChart: ({ Data1, Data2, data1Label, data2Label, fill, }: PeerSalaryChartProp) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export default PeerSalaryChart;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
interface ClickableFilterBadgeProps {
|
|
2
|
+
text: string;
|
|
3
|
+
onClick: (checked: boolean) => void;
|
|
4
|
+
isSelected: boolean;
|
|
5
|
+
}
|
|
6
|
+
declare const ClickableFilterBadge: ({ text, onClick, isSelected, }: ClickableFilterBadgeProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default ClickableFilterBadge;
|
|
@@ -8,5 +8,5 @@ export interface companyBarChartFinancialTabProp {
|
|
|
8
8
|
QoQ12Month: string;
|
|
9
9
|
}
|
|
10
10
|
export declare const options: any;
|
|
11
|
-
export declare const CompanyBarChartFinancialTab: ({ revenues, QoQ12Month, QoQlatest }: companyBarChartFinancialTabProp) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export declare const CompanyBarChartFinancialTab: ({ revenues, QoQ12Month, QoQlatest, }: companyBarChartFinancialTabProp) => import("react/jsx-runtime").JSX.Element;
|
|
12
12
|
export default CompanyBarChartFinancialTab;
|
|
@@ -4,11 +4,10 @@ export interface IcompanyLineChart {
|
|
|
4
4
|
}
|
|
5
5
|
interface companyCombinedChartFinancialTabProp {
|
|
6
6
|
revenues: IcompanyLineChart[];
|
|
7
|
-
stockPerformances: IcompanyLineChart[];
|
|
8
7
|
earnings: IcompanyLineChart[];
|
|
9
8
|
QoQ12Month: string;
|
|
10
9
|
QoQlatest: string;
|
|
11
10
|
}
|
|
12
11
|
export declare const options: any;
|
|
13
|
-
export declare const CompanyCombinedChartFinancialTab: ({ revenues,
|
|
12
|
+
export declare const CompanyCombinedChartFinancialTab: ({ revenues, earnings, QoQlatest, QoQ12Month, }: companyCombinedChartFinancialTabProp) => import("react/jsx-runtime").JSX.Element;
|
|
14
13
|
export default CompanyCombinedChartFinancialTab;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { companyBarChartFinancialTabProp } from
|
|
2
|
-
import { companyLineChartFinancialTabProp } from
|
|
1
|
+
import { companyBarChartFinancialTabProp } from "../../CompanyBarChartFinancialTab";
|
|
2
|
+
import { companyLineChartFinancialTabProp } from "../../CompanyLineChartFinancialTab";
|
|
3
3
|
interface CompanyViewFinancialSummaryProps {
|
|
4
4
|
stockPerformance: companyLineChartFinancialTabProp;
|
|
5
5
|
Revenue: companyBarChartFinancialTabProp;
|
|
6
6
|
earning: companyBarChartFinancialTabProp;
|
|
7
7
|
}
|
|
8
|
-
declare const CompanyViewFinancialSummary: ({ stockPerformance, Revenue, earning }: CompanyViewFinancialSummaryProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
declare const CompanyViewFinancialSummary: ({ stockPerformance, Revenue, earning, }: CompanyViewFinancialSummaryProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
9
|
export default CompanyViewFinancialSummary;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { IconSize, IconType } from
|
|
1
|
+
import { IconSize, IconType } from "../../types";
|
|
2
2
|
interface InputFieldWithSvgProps {
|
|
3
3
|
placeholder?: string;
|
|
4
4
|
iconType?: IconType;
|
|
5
5
|
iconSize?: IconSize;
|
|
6
6
|
showIconOnLeft?: boolean;
|
|
7
7
|
onChange: (value: string) => void;
|
|
8
|
+
handleOnFocus?: () => void;
|
|
8
9
|
}
|
|
9
|
-
declare const InputFieldWithSvg: ({ placeholder, iconType, iconSize, showIconOnLeft, onChange, }: InputFieldWithSvgProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
declare const InputFieldWithSvg: ({ placeholder, iconType, iconSize, showIconOnLeft, onChange, handleOnFocus, }: InputFieldWithSvgProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
11
|
export default InputFieldWithSvg;
|
|
@@ -5,5 +5,5 @@ interface personStatisticsChartProps {
|
|
|
5
5
|
stats: IpersonStatisticsChart;
|
|
6
6
|
}
|
|
7
7
|
export declare const options: any;
|
|
8
|
-
export declare const PersonStatisticsChart: ({ stats }: personStatisticsChartProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare const PersonStatisticsChart: ({ stats, }: personStatisticsChartProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
9
|
export default PersonStatisticsChart;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { ReactNode } from
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
2
|
interface SecondaryButtonProps {
|
|
3
3
|
text?: string;
|
|
4
4
|
secondaryButtonClassName?: string;
|
|
5
|
-
sizeVariant?:
|
|
6
|
-
colorVariant:
|
|
5
|
+
sizeVariant?: "xs" | "sm" | "base";
|
|
6
|
+
colorVariant: "red" | "orange" | "black" | "gray" | "lightGray";
|
|
7
7
|
isDisabled?: boolean;
|
|
8
8
|
onClick: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
9
9
|
children?: ReactNode;
|
|
@@ -27,6 +27,7 @@ export { default as CircularIcon } from "./CircularIcon";
|
|
|
27
27
|
export { default as CircularSvgAndEmoji } from "./CircularSvgAndEmoji";
|
|
28
28
|
export { default as CircularSvgButton } from "./CircularSvgButton";
|
|
29
29
|
export { default as ClickableText } from "./ClickableText";
|
|
30
|
+
export { default as ClickableFilterBadge } from "./ClickableFilterBadge";
|
|
30
31
|
export { default as ColoredButton } from "./ColoredButton";
|
|
31
32
|
export { default as CompanyDetailsCard } from "./CompanyDetailsCard";
|
|
32
33
|
export { default as CompanyLikePillSelectable } from "./CompanyLikePillSelectable";
|
|
@@ -79,6 +80,7 @@ export { default as PersonViewSummary } from "./PersonView/PersonViewSummary";
|
|
|
79
80
|
export { default as PersonViewTabsComponent } from "./PersonView/PersonViewTabsComponent";
|
|
80
81
|
export { default as PrimaryButton } from "./PrimaryButton";
|
|
81
82
|
export { default as ProgressBar } from "./ProgressBar";
|
|
83
|
+
export { default as QluLogoWithText } from "./QluLogoWithText";
|
|
82
84
|
export { default as RangeComponent } from "./RangeComponent";
|
|
83
85
|
export { default as RecentChatComponent } from "./RecentChatComponent";
|
|
84
86
|
export { default as RecentChatLabel } from "./RecentChatLabel";
|
|
@@ -140,3 +142,5 @@ export { default as CompanyViewFinancialGenericTable } from "./CompanyView/Compa
|
|
|
140
142
|
export { default as CompanyViewSummaryNewsTabs } from "./CompanyView/CompanyViewSummaryNewsTabs";
|
|
141
143
|
export { default as CompanyViewSummaryNewsCompoment } from "./CompanyView/CompanyViewSummaryNewsCompoment";
|
|
142
144
|
export { default as CompanyViewBussinessUnitTabs } from "./CompanyView/CompanyViewBussinessUnitTab";
|
|
145
|
+
export { default as RadarChart } from "./Charts/RadarChart";
|
|
146
|
+
export { default as PeerSalaryChart } from "./Charts/PeerSalaryChart";
|