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.
@@ -1,9 +1,11 @@
1
- import { IconSize } from '../../types';
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 'react';
1
+ import React from "react";
2
2
  interface DropDownButtonProps {
3
3
  dropDownText: string;
4
- iconleft?: boolean;
5
- children: React.ReactNode;
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;
@@ -2,6 +2,7 @@ import React from "react";
2
2
  interface PersonViewHeaderProps {
3
3
  profilePicture: string;
4
4
  fullName: string;
5
+ profilePublicIdentifier: string;
5
6
  currentRole: string;
6
7
  currentCompany: string;
7
8
  universalName: string;
@@ -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";