qlu-20-ui-library 1.1.49 → 1.1.51
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/AdvanceFilterJobTItleWindow/index.d.ts +1 -1
- package/dist/components/AssignmentCreationCard/index.d.ts +2 -1
- package/dist/components/AssignmentIdealProfileSelectionCard/BageNonClickableList/index.d.ts +1 -1
- package/dist/components/InputFieldWithSvg/index.d.ts +2 -1
- package/dist/components/NoteEditor/TextStyles.d.ts +3 -0
- package/dist/components/NoteEditor/ToolbarItem.d.ts +3 -0
- package/dist/components/NoteEditor/index.d.ts +8 -0
- package/dist/components/PeopleCard/index.d.ts +4 -3
- package/dist/components/Svg/Bolt.d.ts +8 -0
- package/dist/components/Svg/Images.d.ts +8 -0
- package/dist/components/Svg/Information.d.ts +8 -0
- package/dist/components/Svg/InviteUser.d.ts +8 -0
- package/dist/components/Svg/List.d.ts +8 -0
- package/dist/components/Svg/Table.d.ts +8 -0
- package/dist/components/TextPillNotClickable/index.d.ts +2 -1
- package/dist/components/TruncateText/index.d.ts +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/library.es.js +28700 -12755
- package/dist/library.umd.js +818 -38
- package/dist/types.d.ts +1 -1
- package/package.json +13 -3
|
@@ -6,7 +6,7 @@ interface AdvanceFilterTitleWindowProps {
|
|
|
6
6
|
searchForPillText: string;
|
|
7
7
|
crossOnClick: () => void;
|
|
8
8
|
getRange: (value: RangeObject) => void;
|
|
9
|
-
applyToAllOnClick: () => void;
|
|
9
|
+
applyToAllOnClick: (value: RangeObject) => void;
|
|
10
10
|
truncateTitleLength?: number;
|
|
11
11
|
}
|
|
12
12
|
declare const AdvanceFilterTitleWindow: ({ setMaxValue, setMinValue, truncateTitleLength, searchForPillText, crossOnClick, applyToAllOnClick, getRange, }: AdvanceFilterTitleWindowProps) => JSX.Element;
|
|
@@ -4,7 +4,8 @@ interface AssignmentCreationProps {
|
|
|
4
4
|
assigneeMail: string;
|
|
5
5
|
containerClassName?: string;
|
|
6
6
|
iconType: 'plus' | 'cross';
|
|
7
|
+
isLoading: boolean;
|
|
7
8
|
onClick: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
|
|
8
9
|
}
|
|
9
|
-
declare const AssignmentCreation: ({ assigneeName, assigneeMail, iconType, onClick, }: AssignmentCreationProps) => JSX.Element;
|
|
10
|
+
declare const AssignmentCreation: ({ assigneeName, assigneeMail, iconType, isLoading, onClick, }: AssignmentCreationProps) => JSX.Element;
|
|
10
11
|
export default AssignmentCreation;
|
|
@@ -7,5 +7,5 @@ interface BadgeNonClickableListProps {
|
|
|
7
7
|
badge?: boolean;
|
|
8
8
|
missing?: number;
|
|
9
9
|
}
|
|
10
|
-
declare const BadgeNonClickableList: ({ initialItemsToShow, matchingList, text, badge, missing }: BadgeNonClickableListProps) => JSX.Element;
|
|
10
|
+
declare const BadgeNonClickableList: ({ initialItemsToShow, matchingList, text, badge, missing, }: BadgeNonClickableListProps) => JSX.Element;
|
|
11
11
|
export default BadgeNonClickableList;
|
|
@@ -5,6 +5,7 @@ interface InputFieldWithSvgProps {
|
|
|
5
5
|
iconType?: IconType;
|
|
6
6
|
iconSize?: IconSize;
|
|
7
7
|
showIconOnLeft?: boolean;
|
|
8
|
+
onChange: (value: string) => void;
|
|
8
9
|
}
|
|
9
|
-
declare const InputFieldWithSvg: ({ placeholder, iconType, iconSize, showIconOnLeft, }: InputFieldWithSvgProps) => JSX.Element;
|
|
10
|
+
declare const InputFieldWithSvg: ({ placeholder, iconType, iconSize, showIconOnLeft, onChange, }: InputFieldWithSvgProps) => JSX.Element;
|
|
10
11
|
export default InputFieldWithSvg;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
interface Props {
|
|
3
|
+
value: string;
|
|
4
|
+
handleChange: (newTextValue: string) => void;
|
|
5
|
+
contributors?: string[];
|
|
6
|
+
}
|
|
7
|
+
declare const NoteEditor: ({ value, handleChange, contributors }: Props) => JSX.Element;
|
|
8
|
+
export default NoteEditor;
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { Profile } from
|
|
2
|
+
import { Profile } from './interface';
|
|
3
3
|
interface PeopleCardProps {
|
|
4
4
|
count: number;
|
|
5
5
|
profile: Profile;
|
|
6
6
|
checked: boolean;
|
|
7
|
-
onCheckClick: (
|
|
7
|
+
onCheckClick: (publicIdentifier: string) => void;
|
|
8
|
+
onDetailsClick: (publicIdentifier: string) => void;
|
|
8
9
|
missingSkill: number;
|
|
9
10
|
missingIndustry: number;
|
|
10
11
|
}
|
|
11
|
-
declare const PeopleCard: ({ count, profile, checked, onCheckClick, missingSkill, missingIndustry }: PeopleCardProps) => JSX.Element;
|
|
12
|
+
declare const PeopleCard: ({ count, profile, checked, onCheckClick, missingSkill, missingIndustry, onDetailsClick, }: PeopleCardProps) => JSX.Element;
|
|
12
13
|
export default PeopleCard;
|
|
@@ -3,7 +3,8 @@ interface TextPillNotClickableProps {
|
|
|
3
3
|
text: string;
|
|
4
4
|
hasBorder?: boolean;
|
|
5
5
|
sizeVariant: 'xs' | 'sm' | 'base';
|
|
6
|
+
width?: string;
|
|
6
7
|
truncateLength?: number;
|
|
7
8
|
}
|
|
8
|
-
declare const TextPillNotClickable: ({ text, hasBorder, sizeVariant, truncateLength, }: TextPillNotClickableProps) => JSX.Element;
|
|
9
|
+
declare const TextPillNotClickable: ({ text, hasBorder, sizeVariant, width, truncateLength, }: TextPillNotClickableProps) => JSX.Element;
|
|
9
10
|
export default TextPillNotClickable;
|
|
@@ -5,5 +5,5 @@ type TruncateTextProps = {
|
|
|
5
5
|
toolTipClassName?: string;
|
|
6
6
|
toolTipPosition?: 'top' | 'bottom' | 'left' | 'right';
|
|
7
7
|
};
|
|
8
|
-
declare const TruncateText: ({ text, length, toolTipClassName, toolTipPosition }: TruncateTextProps) => JSX.Element;
|
|
8
|
+
declare const TruncateText: ({ text, length, toolTipClassName, toolTipPosition, }: TruncateTextProps) => JSX.Element;
|
|
9
9
|
export default TruncateText;
|
|
@@ -110,3 +110,4 @@ export { default as SavedSearches } from './SearchFilterSideDrawer/SaveSearch';
|
|
|
110
110
|
export { default as ConnectDropdown } from './ConnectDropdown';
|
|
111
111
|
export { default as PeopleCard } from './PeopleCard';
|
|
112
112
|
export { default as CompanyPill } from './CompanyPill';
|
|
113
|
+
export { default as NoteEditor } from './NoteEditor';
|