qlu-20-ui-library 1.1.97 → 1.1.100
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/CircularIcon/index.d.ts +4 -2
- package/dist/components/CompanyLogoPillSelectable/index.d.ts +2 -1
- package/dist/components/DropDownButton/index.d.ts +5 -4
- package/dist/components/InputFieldWithSvg/index.d.ts +2 -1
- package/dist/components/PersonView/PersonViewGrowthChart/index.d.ts +7 -0
- package/dist/components/PersonView/PersonViewHeader/index.d.ts +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/library.es.js +5071 -4884
- package/dist/library.umd.js +70 -70
- package/package.json +1 -1
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import { IconSize } from
|
|
1
|
+
import { IconSize } from "../../types";
|
|
2
2
|
interface CircularIconProps {
|
|
3
3
|
iconPath: string;
|
|
4
4
|
iconSize?: IconSize;
|
|
5
5
|
className?: string;
|
|
6
|
+
errorImageContainerSize?: string;
|
|
6
7
|
altImageType?: string;
|
|
8
|
+
rerenderTrigger?: boolean;
|
|
7
9
|
}
|
|
8
|
-
declare const CircularIcon: ({ iconPath, iconSize, className, altImageType }: CircularIconProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
declare const CircularIcon: ({ iconPath, iconSize, className, errorImageContainerSize, altImageType, }: CircularIconProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
11
|
export default CircularIcon;
|
|
@@ -6,8 +6,9 @@ interface CompanyLogoPillSelectableProps {
|
|
|
6
6
|
picturePath?: string;
|
|
7
7
|
svgType?: IconType;
|
|
8
8
|
children?: any;
|
|
9
|
+
isHoverShown?: boolean;
|
|
9
10
|
props?: object;
|
|
10
11
|
variant: SelectedUnselectedErrorVariant;
|
|
11
12
|
}
|
|
12
|
-
declare const CompanyLogoPillSelectable: ({ text, variant, onClick, picturePath, props, svgType, children, }: CompanyLogoPillSelectableProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
declare const CompanyLogoPillSelectable: ({ text, variant, onClick, picturePath, props, svgType, isHoverShown, children, }: CompanyLogoPillSelectableProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
14
|
export default CompanyLogoPillSelectable;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from "react";
|
|
2
2
|
interface DropDownButtonProps {
|
|
3
3
|
dropDownText: string;
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
children?: React.ReactNode;
|
|
5
|
+
backgroudTransparent?: boolean;
|
|
6
|
+
dropdownRight?: boolean;
|
|
6
7
|
dropdownOnClickHandler: () => void;
|
|
7
8
|
}
|
|
8
|
-
declare const DropDownButton: ({ dropDownText, children }: DropDownButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
declare const DropDownButton: ({ dropDownText, children, backgroudTransparent, dropdownRight, }: DropDownButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
10
|
export default DropDownButton;
|
|
@@ -6,6 +6,7 @@ interface InputFieldWithSvgProps {
|
|
|
6
6
|
showIconOnLeft?: boolean;
|
|
7
7
|
onChange: (value: string) => void;
|
|
8
8
|
handleOnFocus?: () => void;
|
|
9
|
+
onEnter?: () => void;
|
|
9
10
|
}
|
|
10
|
-
declare const InputFieldWithSvg: ({ placeholder, iconType, iconSize, showIconOnLeft, onChange, handleOnFocus, }: InputFieldWithSvgProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
declare const InputFieldWithSvg: ({ placeholder, iconType, iconSize, showIconOnLeft, onChange, handleOnFocus, onEnter, }: InputFieldWithSvgProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
12
|
export default InputFieldWithSvg;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export interface PersonViewGrowthChartProps {
|
|
2
|
+
inputLabels: string[];
|
|
3
|
+
targetValues: number[];
|
|
4
|
+
comparisonValues: number[];
|
|
5
|
+
}
|
|
6
|
+
declare const PersonViewGrowthChart: ({ inputLabels, targetValues, comparisonValues, }: PersonViewGrowthChartProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default PersonViewGrowthChart;
|
|
@@ -144,3 +144,4 @@ export { default as CompanyViewSummaryNewsCompoment } from "./CompanyView/Compan
|
|
|
144
144
|
export { default as CompanyViewBussinessUnitTabs } from "./CompanyView/CompanyViewBussinessUnitTab";
|
|
145
145
|
export { default as RadarChart } from "./Charts/RadarChart";
|
|
146
146
|
export { default as PeerSalaryChart } from "./Charts/PeerSalaryChart";
|
|
147
|
+
export { default as PersonViewGrowthChart } from "./PersonView/PersonViewGrowthChart";
|