qlu-20-ui-library 1.1.76 → 1.1.77

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.
@@ -6,10 +6,13 @@ interface ExperienceCardProps {
6
6
  from: string;
7
7
  to: string;
8
8
  separator: string;
9
+ universalName: string;
10
+ urn: string;
9
11
  }
10
12
  interface DynamicExperienceCardProps {
11
13
  experiences: ExperienceCardProps[];
12
14
  initialItemsToShow: number;
15
+ onCompanyClick: (universalName: string, urn: string) => void;
13
16
  }
14
- declare const DynamicExperienceCardList: ({ experiences, initialItemsToShow }: DynamicExperienceCardProps) => import("react/jsx-runtime").JSX.Element;
17
+ declare const DynamicExperienceCardList: ({ experiences, initialItemsToShow, onCompanyClick, }: DynamicExperienceCardProps) => import("react/jsx-runtime").JSX.Element;
15
18
  export default DynamicExperienceCardList;
@@ -1,12 +1,15 @@
1
- import { IconSize } from '../../../types';
1
+ import { IconSize } from "../../../types";
2
2
  interface ChatClickableCardProps {
3
3
  iconPath: string;
4
4
  iconSize: IconSize;
5
5
  name: string;
6
6
  designation: string;
7
+ universalName: string;
8
+ urn: string;
9
+ onCompanyNameClick: (universalName: string, urn: string) => void;
7
10
  recentCompany?: string;
8
11
  location?: string;
9
12
  onViewProfileButtonClick: () => void;
10
13
  }
11
- declare const ProfileCard: ({ iconPath, iconSize, name, designation, recentCompany, location, onViewProfileButtonClick, }: ChatClickableCardProps) => import("react/jsx-runtime").JSX.Element;
14
+ declare const ProfileCard: ({ iconPath, iconSize, name, designation, universalName, urn, recentCompany, location, onViewProfileButtonClick, onCompanyNameClick, }: ChatClickableCardProps) => import("react/jsx-runtime").JSX.Element;
12
15
  export default ProfileCard;
@@ -1,4 +1,4 @@
1
- import { IconSize, IconType } from '../../../types';
1
+ import { IconSize, IconType } from "../../../types";
2
2
  export interface NoteProspectiveCardProps {
3
3
  iconUrl: string;
4
4
  text: string;
@@ -16,9 +16,12 @@ interface ProfileCardIstSectionProps {
16
16
  onViewProfileButtonClick: () => void;
17
17
  feedbackText?: string;
18
18
  feedbackIcon: IconType;
19
+ universalName: string;
20
+ urn: string;
21
+ onCompanyNameClick: (universalName: string, urn: string) => void;
19
22
  feedbackLikeClick?: () => void;
20
23
  feedbackMaybeClick?: () => void;
21
24
  feedbackCrossClick?: () => void;
22
25
  }
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;
26
+ declare const ProfileCardIstSection: ({ profileIconPath, profileIconSize, personName, personDesignation, personRecentCompany, companyLocation, notesList, initialItemsToShow, onNotesViewAllClick, onViewProfileButtonClick, feedbackText, feedbackIcon, universalName, urn, onCompanyNameClick, feedbackLikeClick, feedbackMaybeClick, feedbackCrossClick, }: ProfileCardIstSectionProps) => import("react/jsx-runtime").JSX.Element;
24
27
  export default ProfileCardIstSection;
@@ -14,6 +14,8 @@ export interface ExperienceList {
14
14
  from: string;
15
15
  to: string;
16
16
  separator: string;
17
+ universalName: string;
18
+ urn: string;
17
19
  }
18
20
  interface ProfileCardSecondSectionProps {
19
21
  initialItemsToShow: number;
@@ -23,6 +25,7 @@ interface ProfileCardSecondSectionProps {
23
25
  industryMatchingList: string[];
24
26
  experiencesList: ExperienceList[];
25
27
  educationsList: EducationList[];
28
+ onExpoerienceCompanyClick: (universalName: string, urn: string) => void;
26
29
  }
27
- declare const ProfileCardSecondSection: ({ initialItemsToShow, experiencesList, educationsList, }: ProfileCardSecondSectionProps) => import("react/jsx-runtime").JSX.Element;
30
+ declare const ProfileCardSecondSection: ({ initialItemsToShow, experiencesList, educationsList, onExpoerienceCompanyClick, }: ProfileCardSecondSectionProps) => import("react/jsx-runtime").JSX.Element;
28
31
  export default ProfileCardSecondSection;
@@ -1,7 +1,7 @@
1
- import { NoteProspectiveCardProps } from './ProfileIstSection';
2
- import { EducationList, ExperienceList } from './ProfileSecondSection';
3
- import { IconSize, IconType } from '../../types';
4
- import { BreadcrumbItem } from './VerticalBreadCream';
1
+ import { NoteProspectiveCardProps } from "./ProfileIstSection";
2
+ import { EducationList, ExperienceList } from "./ProfileSecondSection";
3
+ import { IconSize, IconType } from "../../types";
4
+ import { BreadcrumbItem } from "./VerticalBreadCream";
5
5
  export interface AssignmentIdealProfileCardProps {
6
6
  publicIdentifier: string;
7
7
  onCheckboxSelected: (publicIdentifier: string) => void;
@@ -11,6 +11,8 @@ export interface AssignmentIdealProfileCardProps {
11
11
  personName: string;
12
12
  personDesignation: string;
13
13
  personRecentCompany: string;
14
+ recentCompanyUniversalName: string;
15
+ recentCompanyUrn: string;
14
16
  companyLocation: string;
15
17
  notesList: NoteProspectiveCardProps[];
16
18
  noteListInitialItemsToShow: number;
@@ -29,10 +31,11 @@ export interface AssignmentIdealProfileCardProps {
29
31
  educationsList: EducationList[];
30
32
  breadCrumbItemsList: BreadcrumbItem[];
31
33
  handleStarClick: (publicIdentifier: string) => void;
34
+ onCompanyClick: (universalName: string, urn: string) => void;
32
35
  onContextViewAllButton: () => void;
33
36
  starSelected: boolean;
34
37
  checkSelected: boolean;
35
38
  isStarIconShown?: boolean;
36
39
  }
37
- 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, isStarIconShown, }: AssignmentIdealProfileCardProps) => import("react/jsx-runtime").JSX.Element;
40
+ declare const AssignmentIdealProfileCard: ({ publicIdentifier, profileIconPath, profileIconSize, personName, personDesignation, personRecentCompany, recentCompanyUniversalName, recentCompanyUrn, companyLocation, notesList, noteListInitialItemsToShow, feedbackText, feedbackIcon, feedbackLikeClick, feedbackMaybeClick, feedbackCrossClick, onCheckboxSelected, onNotesViewAllClick, initialItemsToShow, skillsMissingList, skillsMatchingList, industryMissingList, industryMatchingList, experiencesList, educationsList, onContextViewAllButton, onViewDetailsClick, onCompanyClick, breadCrumbItemsList, handleStarClick, starSelected, checkSelected, isStarIconShown, }: AssignmentIdealProfileCardProps) => import("react/jsx-runtime").JSX.Element;
38
41
  export default AssignmentIdealProfileCard;
@@ -6,6 +6,9 @@ interface ExperienceCardProps {
6
6
  from: string;
7
7
  to: string;
8
8
  separator: string;
9
+ universalName: string;
10
+ urn: string;
11
+ onExperienceCompanyClick: (universalName: string, urn: string) => void;
9
12
  }
10
- declare const ExperienceCard: ({ iconUrl, iconAltText, position, company, from, to, }: ExperienceCardProps) => import("react/jsx-runtime").JSX.Element;
13
+ declare const ExperienceCard: ({ iconUrl, iconAltText, position, company, from, to, universalName, urn, onExperienceCompanyClick, }: ExperienceCardProps) => import("react/jsx-runtime").JSX.Element;
11
14
  export default ExperienceCard;
@@ -1,12 +1,13 @@
1
- import { Profile } from './interface';
1
+ import { Profile } from "./interface";
2
2
  interface PeopleCardProps {
3
3
  count: number;
4
4
  profile: Profile;
5
5
  checked: boolean;
6
6
  onCheckClick: (publicIdentifier: string) => void;
7
7
  onDetailsClick: (publicIdentifier: string) => void;
8
+ onExperienceCompanyClick: (universalName: string, urn: string) => void;
8
9
  missingSkill: number;
9
10
  missingIndustry: number;
10
11
  }
11
- declare const PeopleCard: ({ count, profile, checked, onCheckClick, missingSkill, missingIndustry, onDetailsClick, }: PeopleCardProps) => import("react/jsx-runtime").JSX.Element;
12
+ declare const PeopleCard: ({ count, profile, checked, onCheckClick, missingSkill, missingIndustry, onExperienceCompanyClick, onDetailsClick, }: PeopleCardProps) => import("react/jsx-runtime").JSX.Element;
12
13
  export default PeopleCard;
@@ -1,5 +1,5 @@
1
- import React from 'react';
2
- import { AssignmentIdealProfileCardProps } from '../AssignmentIdealProfileSelectionCard';
1
+ import React from "react";
2
+ import { AssignmentIdealProfileCardProps } from "../AssignmentIdealProfileSelectionCard";
3
3
  interface TitleFilterHeaderProps {
4
4
  tabs: string[];
5
5
  tabContent: {