qlu-20-ui-library 1.1.97 → 1.1.103

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.
@@ -0,0 +1,7 @@
1
+ interface AISearchButtonProp {
2
+ buttonText: string;
3
+ onClick?: () => void;
4
+ isDisabled?: boolean;
5
+ }
6
+ declare const AISearchButton: ({ buttonText, onClick, isDisabled, }: AISearchButtonProp) => import("react/jsx-runtime").JSX.Element;
7
+ export default AISearchButton;
@@ -0,0 +1,11 @@
1
+ import { IconSize } from "../../types";
2
+ interface AISearchInputFieldProps {
3
+ placeholder?: string;
4
+ iconSize?: IconSize;
5
+ onChange?: (value: string) => void;
6
+ handleOnFocus?: () => void;
7
+ onSubmitClick: () => void;
8
+ isDisabled: boolean;
9
+ }
10
+ declare const AISearchInputField: ({ placeholder, iconSize, onChange, handleOnFocus, onSubmitClick, isDisabled, }: AISearchInputFieldProps) => import("react/jsx-runtime").JSX.Element;
11
+ export default AISearchInputField;
@@ -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;
@@ -6,7 +6,7 @@ export interface ICompanyPeople {
6
6
  profileImg: string;
7
7
  }
8
8
  interface ICompanyPeopleTabProps {
9
- onNameClick: (url: String) => void;
9
+ onNameClick: () => void;
10
10
  isPrevious?: boolean;
11
11
  peoples: ICompanyPeople[];
12
12
  }
@@ -1,4 +1,4 @@
1
- import { IconSize } from '../../types';
1
+ import { IconSize } from "../../types";
2
2
  interface CompanyPillNotClickableProps {
3
3
  companyName: string;
4
4
  companyIconPath: string;
@@ -1,4 +1,4 @@
1
- import React from 'react';
1
+ import React from "react";
2
2
  interface CompanyViewHeaderProps {
3
3
  showCheckBox?: boolean;
4
4
  companyLogo: string;
@@ -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;
@@ -1,4 +1,4 @@
1
- import { IconType } from '../../../types';
1
+ import { IconType } from "../../../types";
2
2
  interface CompanySearchFiltersSideDrawerProps {
3
3
  companySearchFilterDetails: {
4
4
  [filterName: string]: {
@@ -1,4 +1,4 @@
1
- import { IconType } from '../../../types';
1
+ import { IconType } from "../../../types";
2
2
  interface PeopleSearchFiltersSideDrawerProps {
3
3
  peopleSearchFilterDetails: {
4
4
  [filterName: string]: {
@@ -0,0 +1,10 @@
1
+ import { ReactNode } from "react";
2
+ type ToolTipComponentProps = {
3
+ children: ReactNode;
4
+ toolTipHolder: ReactNode;
5
+ maxWidth?: number;
6
+ toolTipClassName?: string;
7
+ toolTipPosition?: "top" | "bottom" | "left" | "right";
8
+ };
9
+ declare const ToolTipComponent: ({ children, toolTipHolder, maxWidth, toolTipClassName, toolTipPosition, }: ToolTipComponentProps) => import("react/jsx-runtime").JSX.Element;
10
+ export default ToolTipComponent;
@@ -1,5 +1,6 @@
1
1
  export { default as AddAdditionalIdealProfileCard } from "./AddAdditionalIdealProfileCard";
2
2
  export { default as ActiveFilterPill } from "./ActiveFilterPills";
3
+ export { default as AISearchInputField } from "./AISearchInputField";
3
4
  export { default as AssignmentBreadCrumb } from "./AssignmentBreadCrumb";
4
5
  export { default as AdvanceFilterTitleWindow } from "./AdvanceFilterJobTItleWindow";
5
6
  export { default as AdvanceFilterJobTItleV2 } from "./AdvanceFilterJobTitleV2";
@@ -111,6 +112,7 @@ export { default as TextPillNotClickable } from "./TextPillNotClickable";
111
112
  export { default as TextWithSvgButton } from "./TextWithSvgButton";
112
113
  export { default as TitleFilterHeader } from "./TitleFilterHeader";
113
114
  export { default as ToggleComponent } from "./ToggleComponent";
115
+ export { default as ToolTipComponent } from "./ToolTipComponent";
114
116
  export { default as TopNavbar } from "./TopNavbar";
115
117
  export { default as TruncateText } from "./TruncateText";
116
118
  export { default as SettingsNavbar } from "./SettingsNavbar";
@@ -144,3 +146,5 @@ export { default as CompanyViewSummaryNewsCompoment } from "./CompanyView/Compan
144
146
  export { default as CompanyViewBussinessUnitTabs } from "./CompanyView/CompanyViewBussinessUnitTab";
145
147
  export { default as RadarChart } from "./Charts/RadarChart";
146
148
  export { default as PeerSalaryChart } from "./Charts/PeerSalaryChart";
149
+ export { default as PersonViewGrowthChart } from "./PersonView/PersonViewGrowthChart";
150
+ export { default as AISearchButton } from "./AISearchButton";