qlu-20-ui-library 1.1.41 → 1.1.43

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.
@@ -4,6 +4,8 @@ interface BadgeNonClickableListProps {
4
4
  text: string;
5
5
  missingList: string[];
6
6
  matchingList: string[];
7
+ badge?: boolean;
8
+ missing?: number;
7
9
  }
8
- declare const BadgeNonClickableList: ({ initialItemsToShow, matchingList, text }: BadgeNonClickableListProps) => JSX.Element;
10
+ declare const BadgeNonClickableList: ({ initialItemsToShow, matchingList, text, badge, missing }: BadgeNonClickableListProps) => JSX.Element;
9
11
  export default BadgeNonClickableList;
@@ -0,0 +1,12 @@
1
+ /// <reference types="react" />
2
+ import { Profile } from "./interface";
3
+ interface PeopleCardProps {
4
+ count: number;
5
+ profile: Profile;
6
+ checked: boolean;
7
+ onCheckClick: (checked: boolean) => void;
8
+ missingSkill: number;
9
+ missingIndustry: number;
10
+ }
11
+ declare const PeopleCard: ({ count, profile, checked, onCheckClick, missingSkill, missingIndustry }: PeopleCardProps) => JSX.Element;
12
+ export default PeopleCard;
@@ -0,0 +1,88 @@
1
+ export interface Profile {
2
+ _id?: string;
3
+ experience?: Experience[];
4
+ education?: Education[];
5
+ publications: any[];
6
+ skills: string[];
7
+ alsoViewed?: any[];
8
+ languages: string[];
9
+ publicIdentifier: string;
10
+ industryCode: number;
11
+ imageUrl: string;
12
+ scrapeType: string;
13
+ trackingId: string;
14
+ locationName: string;
15
+ postalCode: string;
16
+ versionTag: number;
17
+ schoolName: string;
18
+ fieldOfStudy: string;
19
+ title: string;
20
+ companyName: string;
21
+ firstName: string;
22
+ lastName: string;
23
+ fullName: string;
24
+ entityUrn: string;
25
+ headline: string;
26
+ summary: string;
27
+ industry: string;
28
+ locality: string;
29
+ countryCode: string;
30
+ currentCompanyWebsite: string;
31
+ companyLinkedinUrl: string;
32
+ currentCompanySpecialties: string;
33
+ currentCompanySize: number;
34
+ currentCompanyName: string;
35
+ currentCompanyIndustry: string;
36
+ profileUrl: string;
37
+ prospectType?: string;
38
+ recruiterLink?: string;
39
+ collectedBy?: string;
40
+ primaryEmail: string;
41
+ age?: string;
42
+ gender?: string;
43
+ race?: string;
44
+ createdAt?: Date;
45
+ updatedAt?: Date;
46
+ isAssigned?: boolean;
47
+ business: string[];
48
+ companySize: string;
49
+ locationId: string;
50
+ phone_number: string;
51
+ rank?: number;
52
+ work_email?: string;
53
+ feedbackState?: string;
54
+ bucket?: string;
55
+ score?: number;
56
+ isSelected?: boolean;
57
+ location_full_path?: string;
58
+ }
59
+ export interface Education {
60
+ end: string;
61
+ start: string;
62
+ degreeName: string;
63
+ schoolName: string;
64
+ fieldOfStudy: string;
65
+ index?: number;
66
+ }
67
+ export interface Experience {
68
+ end: string;
69
+ urn: string;
70
+ logo: null | string;
71
+ start: string;
72
+ title: string;
73
+ location: string;
74
+ industries: string[];
75
+ companySize: number;
76
+ companyType: string;
77
+ description: string;
78
+ company_name: string;
79
+ universalName: null | string;
80
+ companyPageUrl: string;
81
+ companyWebsite: string;
82
+ companySpecialities: any[];
83
+ duration: string | null;
84
+ index?: number;
85
+ }
86
+ export declare enum CompanyType {
87
+ PrivatelyHeld = "Privately Held"
88
+ }
@@ -1,5 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  interface PrimaryButtonProps {
3
+ type?: "button" | "submit" | "reset";
3
4
  text: string;
4
5
  primaryButtonClassName?: string;
5
6
  sizeVariant?: 'xs' | 'sm' | 'base';
@@ -7,5 +8,5 @@ interface PrimaryButtonProps {
7
8
  isDisabled?: boolean;
8
9
  onClick: (event: React.MouseEvent<HTMLButtonElement>) => void;
9
10
  }
10
- declare const PrimaryButton: ({ text, primaryButtonClassName, sizeVariant, colorVariant, isDisabled, onClick, }: PrimaryButtonProps) => JSX.Element;
11
+ declare const PrimaryButton: ({ type, text, primaryButtonClassName, sizeVariant, colorVariant, isDisabled, onClick, }: PrimaryButtonProps) => JSX.Element;
11
12
  export default PrimaryButton;
@@ -13,6 +13,7 @@ interface PeopleSearchFiltersSideDrawerProps {
13
13
  onCancelAllClick: () => void;
14
14
  onViewAdvanceFilterClick: () => void;
15
15
  onCalibrationClick: (value: string) => void;
16
+ showCalibrationOptions?: boolean;
16
17
  }
17
- declare const PeopleSearchFiltersSideDrawer: ({ peopleSearchFilterDetails, onFliterClick, onCancelClick, onSaveClick, onCancelAllClick, onViewAdvanceFilterClick, onCalibrationClick, }: PeopleSearchFiltersSideDrawerProps) => JSX.Element;
18
+ declare const PeopleSearchFiltersSideDrawer: ({ peopleSearchFilterDetails, onFliterClick, onCancelClick, onSaveClick, onCancelAllClick, onViewAdvanceFilterClick, showCalibrationOptions, onCalibrationClick, }: PeopleSearchFiltersSideDrawerProps) => JSX.Element;
18
19
  export default PeopleSearchFiltersSideDrawer;
@@ -5,5 +5,5 @@ interface SaveSearchProps {
5
5
  onTitleClick: (title: Title) => void;
6
6
  onDeleteClick: (title: Title) => void;
7
7
  }
8
- declare const SaveSearch: ({ titles, onTitleClick, onDeleteClick }: SaveSearchProps) => JSX.Element;
9
- export default SaveSearch;
8
+ declare const SavedSearches: ({ titles, onTitleClick, onDeleteClick }: SaveSearchProps) => JSX.Element;
9
+ export default SavedSearches;
@@ -106,5 +106,6 @@ export { default as ToggleComponent } from './ToggleComponent';
106
106
  export { default as TopNavbar } from './TopNavbar';
107
107
  export { default as TruncateText } from './TruncateText';
108
108
  export { default as SettingsNavbar } from './SettingsNavbar';
109
- export { default as SaveSearch } from './SearchFilterSideDrawer/SaveSearch';
109
+ export { default as SavedSearches } from './SearchFilterSideDrawer/SaveSearch';
110
110
  export { default as ConnectDropdown } from './ConnectDropdown';
111
+ export { default as PeopleCard } from './PeopleCard';