qlu-20-ui-library 1.1.21 → 1.1.23
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/AssignmentBreadCrumb/index.d.ts +3 -2
- package/dist/components/AssignmentIdealProfileSelectionCard/DynamicExperienceCard/index.d.ts +1 -1
- package/dist/components/AssignmentIdealProfileSelectionCard/ProfileIstSection/index.d.ts +5 -4
- package/dist/components/AssignmentIdealProfileSelectionCard/index.d.ts +3 -1
- package/dist/components/ChatPeopleCard/index.d.ts +1 -1
- package/dist/components/CircularIcon/index.d.ts +2 -2
- package/dist/components/TextWithSvgButton/index.d.ts +1 -1
- package/dist/index.css +1 -1
- package/dist/library.es.js +2285 -2289
- package/dist/library.umd.js +34 -34
- package/package.json +1 -1
|
@@ -5,8 +5,9 @@ interface item {
|
|
|
5
5
|
interface AssignmentBreadCrumbProps {
|
|
6
6
|
breadCrumbItems: item[];
|
|
7
7
|
archivedCount: number;
|
|
8
|
-
handleClick: () => void;
|
|
8
|
+
handleClick: (tab: string) => void;
|
|
9
|
+
selectedTab: string;
|
|
9
10
|
handleArchiveClick: () => void;
|
|
10
11
|
}
|
|
11
|
-
declare const AssignmentBreadCrumb: ({ breadCrumbItems, archivedCount, handleArchiveClick, handleClick, }: AssignmentBreadCrumbProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
declare const AssignmentBreadCrumb: ({ breadCrumbItems, archivedCount, handleArchiveClick, selectedTab, handleClick, }: AssignmentBreadCrumbProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
13
|
export default AssignmentBreadCrumb;
|
package/dist/components/AssignmentIdealProfileSelectionCard/DynamicExperienceCard/index.d.ts
CHANGED
|
@@ -11,5 +11,5 @@ interface DynamicExperienceCardProps {
|
|
|
11
11
|
experiences: ExperienceCardProps[];
|
|
12
12
|
initialItemsToShow: number;
|
|
13
13
|
}
|
|
14
|
-
declare const DynamicExperienceCardList: ({ experiences, initialItemsToShow
|
|
14
|
+
declare const DynamicExperienceCardList: ({ experiences, initialItemsToShow }: DynamicExperienceCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
15
15
|
export default DynamicExperienceCardList;
|
|
@@ -13,11 +13,12 @@ interface ProfileCardIstSectionProps {
|
|
|
13
13
|
notesList: NoteProspectiveCardProps[];
|
|
14
14
|
initialItemsToShow: number;
|
|
15
15
|
onNotesViewAllClick: () => void;
|
|
16
|
+
onViewProfileButtonClick: () => void;
|
|
16
17
|
feedbackText?: string;
|
|
17
18
|
feedbackIcon: IconType;
|
|
18
|
-
feedbackLikeClick
|
|
19
|
-
feedbackMaybeClick
|
|
20
|
-
feedbackCrossClick
|
|
19
|
+
feedbackLikeClick?: () => void;
|
|
20
|
+
feedbackMaybeClick?: () => void;
|
|
21
|
+
feedbackCrossClick?: () => void;
|
|
21
22
|
}
|
|
22
|
-
declare const ProfileCardIstSection: ({ profileIconPath, profileIconSize, personName, personDesignation, personRecentCompany, companyLocation, notesList, initialItemsToShow, onNotesViewAllClick, feedbackText, feedbackIcon, feedbackLikeClick, feedbackMaybeClick, feedbackCrossClick, }: ProfileCardIstSectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
declare const ProfileCardIstSection: ({ profileIconPath, profileIconSize, personName, personDesignation, personRecentCompany, companyLocation, notesList, initialItemsToShow, onNotesViewAllClick, onViewProfileButtonClick, feedbackText, feedbackIcon, feedbackLikeClick, feedbackMaybeClick, feedbackCrossClick, }: ProfileCardIstSectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
23
24
|
export default ProfileCardIstSection;
|
|
@@ -30,6 +30,8 @@ export interface AssignmentIdealProfileCardProps {
|
|
|
30
30
|
breadCrumbItemsList: BreadcrumbItem[];
|
|
31
31
|
handleStarClick: (publicIdentifier: string) => void;
|
|
32
32
|
onContextViewAllButton: () => void;
|
|
33
|
+
starSelected: boolean;
|
|
34
|
+
checkSelected: boolean;
|
|
33
35
|
}
|
|
34
|
-
declare const AssignmentIdealProfileCard: ({ publicIdentifier, profileIconPath, profileIconSize, personName, personDesignation, personRecentCompany, companyLocation, notesList, noteListInitialItemsToShow, feedbackText, feedbackIcon, feedbackLikeClick, feedbackMaybeClick, feedbackCrossClick, onCheckboxSelected, onNotesViewAllClick, initialItemsToShow, skillsMissingList, skillsMatchingList, industryMissingList, industryMatchingList, experiencesList, educationsList, onContextViewAllButton, breadCrumbItemsList, handleStarClick, }: AssignmentIdealProfileCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
36
|
+
declare const AssignmentIdealProfileCard: ({ publicIdentifier, profileIconPath, profileIconSize, personName, personDesignation, personRecentCompany, companyLocation, notesList, noteListInitialItemsToShow, feedbackText, feedbackIcon, feedbackLikeClick, feedbackMaybeClick, feedbackCrossClick, onCheckboxSelected, onNotesViewAllClick, initialItemsToShow, skillsMissingList, skillsMatchingList, industryMissingList, industryMatchingList, experiencesList, educationsList, onContextViewAllButton, onViewDetailsClick, breadCrumbItemsList, handleStarClick, starSelected, checkSelected, }: AssignmentIdealProfileCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
35
37
|
export default AssignmentIdealProfileCard;
|
|
@@ -5,5 +5,5 @@ interface ChatClickableCardProps {
|
|
|
5
5
|
name: string;
|
|
6
6
|
designation: string;
|
|
7
7
|
}
|
|
8
|
-
declare const ChatPeopleCard: ({ iconPath, iconSize, name, designation }: ChatClickableCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
declare const ChatPeopleCard: ({ iconPath, iconSize, name, designation, }: ChatClickableCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
9
|
export default ChatPeopleCard;
|
|
@@ -3,7 +3,7 @@ interface CircularIconProps {
|
|
|
3
3
|
iconPath: string;
|
|
4
4
|
iconSize?: IconSize;
|
|
5
5
|
className?: string;
|
|
6
|
-
|
|
6
|
+
altImageType?: string;
|
|
7
7
|
}
|
|
8
|
-
declare const CircularIcon: ({ iconPath, iconSize, className,
|
|
8
|
+
declare const CircularIcon: ({ iconPath, iconSize, className, altImageType }: CircularIconProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
9
|
export default CircularIcon;
|
|
@@ -4,7 +4,7 @@ interface TextWithSvgButtonProps {
|
|
|
4
4
|
text: string;
|
|
5
5
|
TextWithSvgButtonClassName?: string;
|
|
6
6
|
sizeVariant?: 'xs' | 'sm' | 'base';
|
|
7
|
-
colorVariant: 'black' | 'gray';
|
|
7
|
+
colorVariant: 'black' | 'gray' | 'primary' | 'red';
|
|
8
8
|
isDisabled?: boolean;
|
|
9
9
|
iconType?: IconType;
|
|
10
10
|
onClick: (event: React.MouseEvent<HTMLButtonElement>) => void;
|