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.
- package/dist/components/AISearchButton/index.d.ts +7 -0
- package/dist/components/AISearchInputField/index.d.ts +11 -0
- package/dist/components/CircularIcon/index.d.ts +4 -2
- package/dist/components/CompanyLogoPillSelectable/index.d.ts +2 -1
- package/dist/components/CompanyPeopleTab/index.d.ts +1 -1
- package/dist/components/CompanyPillNotClicakble/index.d.ts +1 -1
- package/dist/components/CompanyView/CompanyViewHeader/index.d.ts +1 -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/SearchFilterSideDrawer/CompanySearchFiltersSideDrawer/index.d.ts +1 -1
- package/dist/components/SearchFilterSideDrawer/PeopleSearchFiltersSideDrawer/index.d.ts +1 -1
- package/dist/components/ToolTipComponent/index.d.ts +10 -0
- package/dist/components/index.d.ts +4 -0
- package/dist/index.css +1 -1
- package/dist/library.es.js +6602 -6243
- package/dist/library.umd.js +78 -78
- package/package.json +1 -1
|
@@ -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
|
|
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;
|
|
@@ -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";
|