qlu-20-ui-library 1.7.24 → 1.7.26
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/build/index.css +1 -1
- package/dist/build/qlu-20-ui-library.cjs +64 -64
- package/dist/build/qlu-20-ui-library.js +8168 -7962
- package/dist/components/AssignmentIdealProfileSelectionCard/Note/index.d.ts +3 -1
- package/dist/components/AssignmentIdealProfileSelectionCard/NotesProspectiveList/index.d.ts +2 -1
- package/dist/components/AssignmentIdealProfileSelectionCard/ProfileIstSection/index.d.ts +2 -1
- package/dist/components/AssignmentIdealProfileSelectionCard/index.d.ts +2 -1
- package/dist/components/Svg/CompanyStrategy.d.ts +7 -0
- package/dist/components/Svg/IndustryStrategy.d.ts +7 -0
- package/dist/components/Svg/NotDownloaded.d.ts +6 -0
- package/dist/components/Svg/UpdateStrategy.d.ts +7 -0
- package/dist/types/components/AssignmentIdealProfileSelectionCard/Note/index.d.ts +3 -1
- package/dist/types/components/AssignmentIdealProfileSelectionCard/Note/index.js +5 -4
- package/dist/types/components/AssignmentIdealProfileSelectionCard/NotesProspectiveList/index.d.ts +2 -1
- package/dist/types/components/AssignmentIdealProfileSelectionCard/NotesProspectiveList/index.js +8 -9
- package/dist/types/components/AssignmentIdealProfileSelectionCard/ProfileIstSection/index.d.ts +2 -1
- package/dist/types/components/AssignmentIdealProfileSelectionCard/ProfileIstSection/index.js +2 -2
- package/dist/types/components/AssignmentIdealProfileSelectionCard/index.d.ts +2 -1
- package/dist/types/components/AssignmentIdealProfileSelectionCard/index.js +2 -2
- package/dist/types/components/GetSvgIcon/index.js +5 -1
- package/dist/types/components/Svg/Archive.js +1 -1
- package/dist/types/components/Svg/CompanyStrategy.d.ts +7 -0
- package/dist/types/components/Svg/CompanyStrategy.js +5 -0
- package/dist/types/components/Svg/IndustryStrategy.d.ts +7 -0
- package/dist/types/components/Svg/IndustryStrategy.js +5 -0
- package/dist/types/components/Svg/NotDownloaded.d.ts +6 -0
- package/dist/types/components/Svg/NotDownloaded.js +5 -0
- package/dist/types/components/Svg/UpdateStrategy.d.ts +7 -0
- package/dist/types/components/Svg/UpdateStrategy.js +5 -0
- package/dist/types/types.d.ts +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -4,6 +4,8 @@ type NoteProps = {
|
|
|
4
4
|
dateTime: string;
|
|
5
5
|
isEdited: boolean;
|
|
6
6
|
content: string;
|
|
7
|
+
notesRemaining: number;
|
|
8
|
+
onNotesViewAllClick: () => void;
|
|
7
9
|
};
|
|
8
|
-
declare function Note({ id, author, dateTime, isEdited, content }: NoteProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
declare function Note({ id, author, dateTime, isEdited, content, notesRemaining, onNotesViewAllClick, }: NoteProps): import("react/jsx-runtime").JSX.Element;
|
|
9
11
|
export default Note;
|
|
@@ -2,7 +2,8 @@ import { ProfileNote } from "..";
|
|
|
2
2
|
interface NoteProspectiveCardListProps {
|
|
3
3
|
notes: ProfileNote[];
|
|
4
4
|
onNotesViewAllClick: () => void;
|
|
5
|
+
onAddNotesClick: () => void;
|
|
5
6
|
dataCy?: string;
|
|
6
7
|
}
|
|
7
|
-
declare const NoteProspectiveCardList: ({ notes, onNotesViewAllClick, dataCy, }: NoteProspectiveCardListProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
declare const NoteProspectiveCardList: ({ notes, onNotesViewAllClick, onAddNotesClick, dataCy, }: NoteProspectiveCardListProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
9
|
export default NoteProspectiveCardList;
|
|
@@ -9,6 +9,7 @@ interface ProfileCardIstSectionProps {
|
|
|
9
9
|
companyLocation?: string;
|
|
10
10
|
notes: ProfileNote[];
|
|
11
11
|
onNotesViewAllClick: () => void;
|
|
12
|
+
onAddNotesClick: () => void;
|
|
12
13
|
onViewProfileButtonClick: () => void;
|
|
13
14
|
universalName: string;
|
|
14
15
|
urn: string;
|
|
@@ -26,5 +27,5 @@ interface ProfileCardIstSectionProps {
|
|
|
26
27
|
};
|
|
27
28
|
dataCy?: string;
|
|
28
29
|
}
|
|
29
|
-
declare const ProfileCardIstSection: ({ profileIconPath, profileIconSize, personName, personDesignation, personRecentCompany, companyLocation, onNotesViewAllClick, onViewProfileButtonClick, universalName, urn, onCompanyNameClick, notes, campaign, onCampaignClick, dataCy, }: ProfileCardIstSectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
30
|
+
declare const ProfileCardIstSection: ({ profileIconPath, profileIconSize, personName, personDesignation, personRecentCompany, companyLocation, onNotesViewAllClick, onAddNotesClick, onViewProfileButtonClick, universalName, urn, onCompanyNameClick, notes, campaign, onCampaignClick, dataCy, }: ProfileCardIstSectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
30
31
|
export default ProfileCardIstSection;
|
|
@@ -23,6 +23,7 @@ export interface AssignmentIdealProfileCardProps {
|
|
|
23
23
|
companyLocation: string;
|
|
24
24
|
notes: ProfileNote[];
|
|
25
25
|
onNotesViewAllClick: (esId: string) => void;
|
|
26
|
+
onAddNotesClick: (esId: string) => void;
|
|
26
27
|
initialExperienceShow: number;
|
|
27
28
|
initialEducationShow: number;
|
|
28
29
|
skillsMissingList: string[];
|
|
@@ -50,5 +51,5 @@ export interface AssignmentIdealProfileCardProps {
|
|
|
50
51
|
};
|
|
51
52
|
dataCy?: string;
|
|
52
53
|
}
|
|
53
|
-
declare const AssignmentIdealProfileCard: ({ profileIndex, id, profileIconPath, profileIconSize, personName, personDesignation, personRecentCompany, recentCompanyUniversalName, recentCompanyUrn, companyLocation, notes, onCheckboxSelected, onNotesViewAllClick, initialExperienceShow, initialEducationShow, skillsMissingList, skillsMatchingList, industryMissingList, industryMatchingList, experiencesList, educationsList, onViewDetailsClick, onCompanyClick, handleStarClick, starSelected, checkSelected, isStarIconShown, onCampaignClick, campaign, dataCy, }: AssignmentIdealProfileCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
54
|
+
declare const AssignmentIdealProfileCard: ({ profileIndex, id, profileIconPath, profileIconSize, personName, personDesignation, personRecentCompany, recentCompanyUniversalName, recentCompanyUrn, companyLocation, notes, onCheckboxSelected, onNotesViewAllClick, onAddNotesClick, initialExperienceShow, initialEducationShow, skillsMissingList, skillsMatchingList, industryMissingList, industryMatchingList, experiencesList, educationsList, onViewDetailsClick, onCompanyClick, handleStarClick, starSelected, checkSelected, isStarIconShown, onCampaignClick, campaign, dataCy, }: AssignmentIdealProfileCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
54
55
|
export default AssignmentIdealProfileCard;
|
|
@@ -5,6 +5,8 @@ type NoteProps = {
|
|
|
5
5
|
dateTime: string;
|
|
6
6
|
isEdited: boolean;
|
|
7
7
|
content: string;
|
|
8
|
+
notesRemaining: number;
|
|
9
|
+
onNotesViewAllClick: () => void;
|
|
8
10
|
};
|
|
9
|
-
declare function Note({ id, author, dateTime, isEdited, content }: NoteProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
declare function Note({ id, author, dateTime, isEdited, content, notesRemaining, onNotesViewAllClick, }: NoteProps): import("react/jsx-runtime").JSX.Element;
|
|
10
12
|
export default Note;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { getInitials } from "../../../utils";
|
|
3
|
+
import ClickableText from "../../ClickableText";
|
|
3
4
|
import "./styles.scss";
|
|
4
|
-
function Note({ id, author, dateTime, isEdited, content }) {
|
|
5
|
-
return (_jsxs("div", { className: "note", children: [_jsxs("div", { className: "noteHeader", children: [_jsx("div", { className: "avatar", children: _jsx("span", { children: getInitials(author) }) }), _jsxs("div", { className: "
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
function Note({ id, author, dateTime, isEdited, content, notesRemaining, onNotesViewAllClick, }) {
|
|
6
|
+
return (_jsxs("div", { className: "note", children: [_jsxs("div", { className: "noteHeader", children: [_jsx("div", { className: "avatar", children: _jsx("span", { children: getInitials(author) }) }), _jsxs("div", { className: "noteContentWrapper", children: [_jsx("div", { className: "noteContent", dangerouslySetInnerHTML: {
|
|
7
|
+
__html: content,
|
|
8
|
+
} }), _jsxs("div", { className: "info", children: [_jsx("p", { className: "author", children: author }), _jsxs("p", { className: "time", children: [isEdited ? "Last edited : " : "", dateTime] })] })] })] }), notesRemaining > 0 && (_jsx("div", { className: "action", children: _jsx(ClickableText, { colorVariant: "gray", sizeVariant: "xs", text: `View ${notesRemaining} more`, onClick: onNotesViewAllClick }) }))] }, id));
|
|
8
9
|
}
|
|
9
10
|
export default Note;
|
package/dist/types/components/AssignmentIdealProfileSelectionCard/NotesProspectiveList/index.d.ts
CHANGED
|
@@ -3,7 +3,8 @@ import "./style.scss";
|
|
|
3
3
|
interface NoteProspectiveCardListProps {
|
|
4
4
|
notes: ProfileNote[];
|
|
5
5
|
onNotesViewAllClick: () => void;
|
|
6
|
+
onAddNotesClick: () => void;
|
|
6
7
|
dataCy?: string;
|
|
7
8
|
}
|
|
8
|
-
declare const NoteProspectiveCardList: ({ notes, onNotesViewAllClick, dataCy, }: NoteProspectiveCardListProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
declare const NoteProspectiveCardList: ({ notes, onNotesViewAllClick, onAddNotesClick, dataCy, }: NoteProspectiveCardListProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
10
|
export default NoteProspectiveCardList;
|
package/dist/types/components/AssignmentIdealProfileSelectionCard/NotesProspectiveList/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { ClickableText } from "../..";
|
|
3
3
|
import Note from "../Note";
|
|
4
4
|
import "./style.scss";
|
|
5
|
-
const NoteProspectiveCardList = ({ notes, onNotesViewAllClick, dataCy, }) => {
|
|
5
|
+
const NoteProspectiveCardList = ({ notes, onNotesViewAllClick, onAddNotesClick, dataCy, }) => {
|
|
6
6
|
const options = {
|
|
7
7
|
month: "short",
|
|
8
8
|
day: "numeric",
|
|
@@ -11,13 +11,12 @@ const NoteProspectiveCardList = ({ notes, onNotesViewAllClick, dataCy, }) => {
|
|
|
11
11
|
minute: "numeric",
|
|
12
12
|
hour12: true,
|
|
13
13
|
};
|
|
14
|
-
return (_jsxs("div", { className: "notes--container", children: [_jsxs("div", { className: "notes-header", children: [
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
}) })] }));
|
|
14
|
+
return (_jsxs("div", { className: "notes--container", children: [_jsxs("div", { className: "notes-header", children: [_jsx("div", { className: "notes-info", children: `Notes ${notes.length > 0 ? `(${notes.length})` : ""}` }), _jsx("span", { children: _jsx(ClickableText, { colorVariant: "orange", sizeVariant: "sm", text: "Add Note", onClick: onAddNotesClick, dataCy: `${dataCy}-${notes && notes.length > 0 ? "view-all" : "add"}` }) })] }), _jsx("div", { className: "notesContainer", children: notes.length > 0 ? (notes.slice(0, 1).map((note) => {
|
|
15
|
+
const correctDateTime = note.updatedAt || note.createdAt;
|
|
16
|
+
const tranformedDataTime = new Date(correctDateTime)
|
|
17
|
+
.toLocaleString("en-US", options)
|
|
18
|
+
.replace(",", "");
|
|
19
|
+
return (_jsx(Note, { id: note.id, author: note.userName, dateTime: tranformedDataTime, isEdited: note.updatedAt !== null, content: note.content, notesRemaining: notes.length - 1, onNotesViewAllClick: onNotesViewAllClick }));
|
|
20
|
+
})) : (_jsx("div", { className: "no-notes", children: "No notes available." })) })] }));
|
|
22
21
|
};
|
|
23
22
|
export default NoteProspectiveCardList;
|
package/dist/types/components/AssignmentIdealProfileSelectionCard/ProfileIstSection/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ interface ProfileCardIstSectionProps {
|
|
|
10
10
|
companyLocation?: string;
|
|
11
11
|
notes: ProfileNote[];
|
|
12
12
|
onNotesViewAllClick: () => void;
|
|
13
|
+
onAddNotesClick: () => void;
|
|
13
14
|
onViewProfileButtonClick: () => void;
|
|
14
15
|
universalName: string;
|
|
15
16
|
urn: string;
|
|
@@ -27,5 +28,5 @@ interface ProfileCardIstSectionProps {
|
|
|
27
28
|
};
|
|
28
29
|
dataCy?: string;
|
|
29
30
|
}
|
|
30
|
-
declare const ProfileCardIstSection: ({ profileIconPath, profileIconSize, personName, personDesignation, personRecentCompany, companyLocation, onNotesViewAllClick, onViewProfileButtonClick, universalName, urn, onCompanyNameClick, notes, campaign, onCampaignClick, dataCy, }: ProfileCardIstSectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
declare const ProfileCardIstSection: ({ profileIconPath, profileIconSize, personName, personDesignation, personRecentCompany, companyLocation, onNotesViewAllClick, onAddNotesClick, onViewProfileButtonClick, universalName, urn, onCompanyNameClick, notes, campaign, onCampaignClick, dataCy, }: ProfileCardIstSectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
31
32
|
export default ProfileCardIstSection;
|
package/dist/types/components/AssignmentIdealProfileSelectionCard/ProfileIstSection/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import NoteProspectiveCardList from "../NotesProspectiveList";
|
|
|
3
3
|
import ProfileCard from "../ProfileCard";
|
|
4
4
|
import "./style.scss";
|
|
5
5
|
import ProspectCampaign from "../../ProspectCampaign";
|
|
6
|
-
const ProfileCardIstSection = ({ profileIconPath = "https://media.licdn.com/dms/image/C5603AQHn7tbH46HwRw/profile-displayphoto-shrink_100_100/0/1651460224714?e=1688601600&v=beta&t=Rp0HL0Q-b3zSydvEhWzj67pxqvi5lIRF-ZlLloVru4o", profileIconSize = "88", personName = "Ethan Brown", personDesignation = "VP Product @ Beyond Meat", personRecentCompany, companyLocation, onNotesViewAllClick, onViewProfileButtonClick = () => { }, universalName, urn, onCompanyNameClick, notes, campaign, onCampaignClick = () => { }, dataCy, }) => {
|
|
7
|
-
return (_jsxs("div", { className: "profileCard--Generic", children: [_jsx("span", { children: _jsx(ProfileCard, { iconPath: profileIconPath, iconSize: profileIconSize, name: personName, universalName: universalName, urn: urn, onCompanyNameClick: onCompanyNameClick, designation: personDesignation, recentCompany: personRecentCompany, location: companyLocation, onViewProfileButtonClick: onViewProfileButtonClick, dataCy: dataCy }) }), !!campaign?.id && (_jsx("span", { children: _jsx(ProspectCampaign, { onCampaignClick: onCampaignClick, campaign: campaign }) })), _jsx("span", { children: _jsx(NoteProspectiveCardList, { notes: notes, onNotesViewAllClick: onNotesViewAllClick, dataCy: dataCy }) })] }));
|
|
6
|
+
const ProfileCardIstSection = ({ profileIconPath = "https://media.licdn.com/dms/image/C5603AQHn7tbH46HwRw/profile-displayphoto-shrink_100_100/0/1651460224714?e=1688601600&v=beta&t=Rp0HL0Q-b3zSydvEhWzj67pxqvi5lIRF-ZlLloVru4o", profileIconSize = "88", personName = "Ethan Brown", personDesignation = "VP Product @ Beyond Meat", personRecentCompany, companyLocation, onNotesViewAllClick, onAddNotesClick, onViewProfileButtonClick = () => { }, universalName, urn, onCompanyNameClick, notes, campaign, onCampaignClick = () => { }, dataCy, }) => {
|
|
7
|
+
return (_jsxs("div", { className: "profileCard--Generic", children: [_jsx("span", { children: _jsx(ProfileCard, { iconPath: profileIconPath, iconSize: profileIconSize, name: personName, universalName: universalName, urn: urn, onCompanyNameClick: onCompanyNameClick, designation: personDesignation, recentCompany: personRecentCompany, location: companyLocation, onViewProfileButtonClick: onViewProfileButtonClick, dataCy: dataCy }) }), !!campaign?.id && (_jsx("span", { children: _jsx(ProspectCampaign, { onCampaignClick: onCampaignClick, campaign: campaign }) })), _jsx("span", { children: _jsx(NoteProspectiveCardList, { notes: notes, onNotesViewAllClick: onNotesViewAllClick, onAddNotesClick: onAddNotesClick, dataCy: dataCy }) })] }));
|
|
8
8
|
};
|
|
9
9
|
export default ProfileCardIstSection;
|
|
@@ -24,6 +24,7 @@ export interface AssignmentIdealProfileCardProps {
|
|
|
24
24
|
companyLocation: string;
|
|
25
25
|
notes: ProfileNote[];
|
|
26
26
|
onNotesViewAllClick: (esId: string) => void;
|
|
27
|
+
onAddNotesClick: (esId: string) => void;
|
|
27
28
|
initialExperienceShow: number;
|
|
28
29
|
initialEducationShow: number;
|
|
29
30
|
skillsMissingList: string[];
|
|
@@ -51,5 +52,5 @@ export interface AssignmentIdealProfileCardProps {
|
|
|
51
52
|
};
|
|
52
53
|
dataCy?: string;
|
|
53
54
|
}
|
|
54
|
-
declare const AssignmentIdealProfileCard: ({ profileIndex, id, profileIconPath, profileIconSize, personName, personDesignation, personRecentCompany, recentCompanyUniversalName, recentCompanyUrn, companyLocation, notes, onCheckboxSelected, onNotesViewAllClick, initialExperienceShow, initialEducationShow, skillsMissingList, skillsMatchingList, industryMissingList, industryMatchingList, experiencesList, educationsList, onViewDetailsClick, onCompanyClick, handleStarClick, starSelected, checkSelected, isStarIconShown, onCampaignClick, campaign, dataCy, }: AssignmentIdealProfileCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
55
|
+
declare const AssignmentIdealProfileCard: ({ profileIndex, id, profileIconPath, profileIconSize, personName, personDesignation, personRecentCompany, recentCompanyUniversalName, recentCompanyUrn, companyLocation, notes, onCheckboxSelected, onNotesViewAllClick, onAddNotesClick, initialExperienceShow, initialEducationShow, skillsMissingList, skillsMatchingList, industryMissingList, industryMatchingList, experiencesList, educationsList, onViewDetailsClick, onCompanyClick, handleStarClick, starSelected, checkSelected, isStarIconShown, onCampaignClick, campaign, dataCy, }: AssignmentIdealProfileCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
55
56
|
export default AssignmentIdealProfileCard;
|
|
@@ -5,7 +5,7 @@ import ProfileCardSecondSection from "./ProfileSecondSection";
|
|
|
5
5
|
import "./style.scss";
|
|
6
6
|
const AssignmentIdealProfileCard = ({
|
|
7
7
|
// Ist Section Column
|
|
8
|
-
profileIndex, id, profileIconPath, profileIconSize, personName, personDesignation, personRecentCompany, recentCompanyUniversalName, recentCompanyUrn, companyLocation, notes, onCheckboxSelected, onNotesViewAllClick,
|
|
8
|
+
profileIndex, id, profileIconPath, profileIconSize, personName, personDesignation, personRecentCompany, recentCompanyUniversalName, recentCompanyUrn, companyLocation, notes, onCheckboxSelected, onNotesViewAllClick, onAddNotesClick,
|
|
9
9
|
// Second Section Values
|
|
10
10
|
initialExperienceShow, initialEducationShow, skillsMissingList, skillsMatchingList, industryMissingList, industryMatchingList, experiencesList, educationsList,
|
|
11
11
|
// onContextViewAllButton,
|
|
@@ -18,6 +18,6 @@ handleStarClick, starSelected = false, checkSelected = false, isStarIconShown =
|
|
|
18
18
|
const handleStarState = () => {
|
|
19
19
|
handleStarClick(id);
|
|
20
20
|
};
|
|
21
|
-
return (_jsxs("span", { className: `assignment-ideal-profile-card--Generic ${checkSelected ? "checkboxChecked" : ""}`, children: [_jsxs("span", { className: "left-component-ideal-profile", children: [_jsxs("span", { className: "profilecard-header-checkboxandstar-emoji", children: [_jsxs("span", { className: "check-box--profilecard", children: [profileIndex && _jsxs("p", { children: [profileIndex, "."] }), _jsx(CheckboxComponent, { checked: checkSelected, onClick: handleSlectedState, dataCy: `${dataCy}-checkbox` })] }), isStarIconShown && (_jsx("span", { className: `profilecard-header-star ${starSelected ? "" : "starNotChecked"}`, children: _jsx(IconButton, { shape: "circular", iconType: "star", variant: "tertiary", color: "gray", iconSize: "20", sizeVariant: "sm", onClick: handleStarState, "data-cy": `${dataCy}-star` }) }))] }), _jsx(ProfileCardIstSection, { profileIconPath: profileIconPath, profileIconSize: profileIconSize, personName: personName, personDesignation: personDesignation, personRecentCompany: personRecentCompany, companyLocation: companyLocation, universalName: recentCompanyUniversalName, urn: recentCompanyUrn, notes: notes, onNotesViewAllClick: () => onNotesViewAllClick(id), onViewProfileButtonClick: () => onViewDetailsClick(id), onCompanyNameClick: onCompanyClick, onCampaignClick: onCampaignClick, campaign: campaign, dataCy: dataCy })] }), _jsx(ProfileCardSecondSection, { initialExperienceShow: initialExperienceShow, initialEducationShow: initialEducationShow, skillsMissingList: skillsMissingList, skillsMatchingList: skillsMatchingList, industryMissingList: industryMissingList, industryMatchingList: industryMatchingList, experiencesList: experiencesList, educationsList: educationsList, onExpoerienceCompanyClick: onCompanyClick, dataCy: dataCy })] }));
|
|
21
|
+
return (_jsxs("span", { className: `assignment-ideal-profile-card--Generic ${checkSelected ? "checkboxChecked" : ""}`, children: [_jsxs("span", { className: "left-component-ideal-profile", children: [_jsxs("span", { className: "profilecard-header-checkboxandstar-emoji", children: [_jsxs("span", { className: "check-box--profilecard", children: [profileIndex && _jsxs("p", { children: [profileIndex, "."] }), _jsx(CheckboxComponent, { checked: checkSelected, onClick: handleSlectedState, dataCy: `${dataCy}-checkbox` })] }), isStarIconShown && (_jsx("span", { className: `profilecard-header-star ${starSelected ? "" : "starNotChecked"}`, children: _jsx(IconButton, { shape: "circular", iconType: "star", variant: "tertiary", color: "gray", iconSize: "20", sizeVariant: "sm", onClick: handleStarState, "data-cy": `${dataCy}-star` }) }))] }), _jsx(ProfileCardIstSection, { profileIconPath: profileIconPath, profileIconSize: profileIconSize, personName: personName, personDesignation: personDesignation, personRecentCompany: personRecentCompany, companyLocation: companyLocation, universalName: recentCompanyUniversalName, urn: recentCompanyUrn, notes: notes, onNotesViewAllClick: () => onNotesViewAllClick(id), onAddNotesClick: () => onAddNotesClick(id), onViewProfileButtonClick: () => onViewDetailsClick(id), onCompanyNameClick: onCompanyClick, onCampaignClick: onCampaignClick, campaign: campaign, dataCy: dataCy })] }), _jsx(ProfileCardSecondSection, { initialExperienceShow: initialExperienceShow, initialEducationShow: initialEducationShow, skillsMissingList: skillsMissingList, skillsMatchingList: skillsMatchingList, industryMissingList: industryMissingList, industryMatchingList: industryMatchingList, experiencesList: experiencesList, educationsList: educationsList, onExpoerienceCompanyClick: onCompanyClick, dataCy: dataCy })] }));
|
|
22
22
|
};
|
|
23
23
|
export default AssignmentIdealProfileCard;
|
|
@@ -138,7 +138,11 @@ import GoogleColoredLogo from "../Svg/GoogleColoredLogo";
|
|
|
138
138
|
import WebsiteBadge from "../Svg/WebsiteBadge";
|
|
139
139
|
import ArrowLeftShort from "../Svg/ArrowLeftShort";
|
|
140
140
|
import Lock from "../Svg/Lock";
|
|
141
|
+
import CompanyStrategy from "../Svg/CompanyStrategy";
|
|
142
|
+
import IndustryStrategy from "../Svg/IndustryStrategy";
|
|
143
|
+
import UpdateStrategy from "../Svg/UpdateStrategy";
|
|
144
|
+
import NotDownloaded from "../Svg/NotDownloaded";
|
|
141
145
|
const GetSvgIcon = ({ iconType = "cross", iconSize = "24" }) => {
|
|
142
|
-
return iconType === "cross" ? (_jsx(Cross, { width: iconSize, height: iconSize })) : iconType === "plus" ? (_jsx(Plus, { width: iconSize, height: iconSize })) : iconType === "thumb" ? (_jsx(Thumb, { width: iconSize, height: iconSize })) : iconType === "clock" ? (_jsx(Clock, { width: iconSize, height: iconSize })) : iconType === "tick" ? (_jsx(Tick, { width: iconSize, height: iconSize })) : iconType === "linkedinLogo" ? (_jsx(LinkedinLogo, { width: iconSize, height: iconSize })) : iconType === "searchArrow" ? (_jsx(SearchArrow, { width: iconSize, height: iconSize })) : iconType === "excalamationCircle" ? (_jsx(ExclamationCircle, { width: iconSize, height: iconSize })) : iconType === "edit" ? (_jsx(Edit, { width: iconSize, height: iconSize })) : iconType === "delete" ? (_jsx(Delete, { width: iconSize, height: iconSize })) : iconType === "chatOneBallon" ? (_jsx(ChatOneballon, { width: iconSize, height: iconSize })) : iconType === "qluLogo" ? (_jsx(QluLogo, { width: iconSize, height: iconSize })) : iconType === "gear" ? (_jsx(Gear, { width: iconSize, height: iconSize })) : iconType === "home" ? (_jsx(Home, { width: iconSize, height: iconSize })) : iconType === "paperPlaneUpRight" ? (_jsx(PaperPlaneUpRight, { width: iconSize, height: iconSize })) : iconType === "search" ? (_jsx(Search, { width: iconSize, height: iconSize })) : iconType === "chat" ? (_jsx(Chat, { width: iconSize, height: iconSize })) : iconType === "briefcase" ? (_jsx(Briefcase, { width: iconSize, height: iconSize })) : iconType === "barGraph" ? (_jsx(BarGraph, { width: iconSize, height: iconSize })) : iconType === "book" ? (_jsx(Book, { width: iconSize, height: iconSize })) : iconType === "company" ? (_jsx(Company, { width: iconSize, height: iconSize })) : iconType === "dollarBriefcase" ? (_jsx(DollarBriefcase, { width: iconSize, height: iconSize })) : iconType === "industry" ? (_jsx(Industry, { width: iconSize, height: iconSize })) : iconType === "jobTitle" ? (_jsx(JobTitle, { width: iconSize, height: iconSize })) : iconType === "location" ? (_jsx(Location, { width: iconSize, height: iconSize })) : iconType === "strategyPath" ? (_jsx(StrategyPath, { width: iconSize, height: iconSize })) : iconType === "tools" ? (_jsx(Tools, { width: iconSize, height: iconSize })) : iconType === "management" ? (_jsx(Management, { width: iconSize, height: iconSize })) : iconType === "employees" ? (_jsx(Employees, { width: iconSize, height: iconSize })) : iconType === "cheveronDown" ? (_jsx(CheveronDown, { width: iconSize, height: iconSize })) : iconType === "cheveronUp" ? (_jsx(CheveronUp, { width: iconSize, height: iconSize })) : iconType === "arrowLeft" ? (_jsx(ArrowLeft, { width: iconSize, height: iconSize })) : iconType === "arrowRight" ? (_jsx(ArrowRight, { width: iconSize, height: iconSize })) : iconType === "passTick" ? (_jsx(PassTick, { width: iconSize, height: iconSize })) : iconType === "doNotInclude" ? (_jsx(DoNotInclude, { width: iconSize, height: iconSize })) : iconType === "tickCircle" ? (_jsx(TickCircle, { width: iconSize, height: iconSize })) : iconType === "phone" ? (_jsx(Phone, { width: iconSize, height: iconSize })) : iconType === "email" ? (_jsx(Email, { width: iconSize, height: iconSize })) : iconType === "eye" ? (_jsx(Eye, { width: iconSize, height: iconSize })) : iconType === "eyeOff" ? (_jsx(EyeOff, { width: iconSize, height: iconSize })) : iconType === "congratulations" ? (_jsx(Congratulations, {})) : iconType === "heart" ? (_jsx(Heart, { width: iconSize, height: iconSize })) : iconType === "questionMark" ? (_jsx(QuestionMark, { width: iconSize, height: iconSize })) : iconType === "kebab" ? (_jsx(Kebab, { width: iconSize, height: iconSize })) : iconType === "calendar" ? (_jsx(Calendar, { width: iconSize, height: iconSize })) : iconType === "officeBuilding" ? (_jsx(OfficeBuilding, { width: iconSize, height: iconSize })) : iconType === "notes" ? (_jsx(Notes, { width: iconSize, height: iconSize })) : iconType === "star" ? (_jsx(Star, { width: iconSize, height: iconSize })) : iconType === "filterFunel" ? (_jsx(FilterFunel, { width: iconSize, height: iconSize })) : iconType === "sortUpDownArrows" ? (_jsx(SortUpDownArrows, { width: iconSize, height: iconSize })) : iconType === "download" ? (_jsx(Download, { width: iconSize, height: iconSize })) : iconType === "sparkles" ? (_jsx(Sparkles, { width: iconSize, height: iconSize })) : iconType === "writeNotes" ? (_jsx(WriteNotes, { width: iconSize, height: iconSize })) : iconType === "undo" ? (_jsx(Undo, { width: iconSize, height: iconSize })) : iconType === "emailSend" ? (_jsx(EmailSend, { width: iconSize, height: iconSize })) : iconType === "copy" ? (_jsx(Copy, { width: iconSize, height: iconSize })) : iconType === "openLink" ? (_jsx(OpenLink, { width: iconSize, height: iconSize })) : iconType === "internalUser" ? (_jsx(InternalUser, { width: iconSize, height: iconSize })) : iconType === "link" ? (_jsx(Link, { width: iconSize, height: iconSize })) : iconType === "bell" ? (_jsx(Bell, { width: iconSize, height: iconSize })) : iconType === "graduationHat" ? (_jsx(GraduationHat, { width: iconSize, height: iconSize })) : iconType === "user" ? (_jsx(User, { width: iconSize, height: iconSize })) : iconType === "password" ? (_jsx(Password, { width: iconSize, height: iconSize })) : iconType === "emailDisconnected" ? (_jsx(EmailDisconnected, { width: iconSize, height: iconSize })) : iconType === "bolt" ? (_jsx(Bolt, { width: iconSize, height: iconSize })) : iconType === "images" ? (_jsx(Images, { width: iconSize, height: iconSize })) : iconType === "information" ? (_jsx(Information, { width: iconSize, height: iconSize })) : iconType === "inviteUser" ? (_jsx(InviteUser, { width: iconSize, height: iconSize })) : iconType === "list" ? (_jsx(List, { width: iconSize, height: iconSize })) : iconType === "table" ? (_jsx(Table, { width: iconSize, height: iconSize })) : iconType === "arrowDown" ? (_jsx(ArrowDown, { width: iconSize, height: iconSize })) : iconType === "arrowUp" ? (_jsx(ArrowUp, { width: iconSize, height: iconSize })) : iconType === "chevronLeft" ? (_jsx(ChevronLeft, { width: iconSize, height: iconSize })) : iconType === "chevronRight" ? (_jsx(ChevronRight, { width: iconSize, height: iconSize })) : iconType === "radio" ? (_jsx(Radio, { width: iconSize, height: iconSize })) : iconType === "like" ? (_jsx(Like, { width: iconSize, height: iconSize })) : iconType === "unlike" ? (_jsx(Unlike, { width: iconSize, height: iconSize })) : iconType === "refresh" ? (_jsx(Refresh, { width: iconSize, height: iconSize })) : iconType === "emailRound" ? (_jsx(EmailRound, { width: iconSize, height: iconSize })) : iconType === "abstractGeometric" ? (_jsx(AbstractGeometric, { width: iconSize, height: iconSize })) : iconType === "seo" ? (_jsx(Seo, { width: iconSize, height: iconSize })) : iconType === "abstractCircle" ? (_jsx(AbstractCircle, { width: iconSize, height: iconSize })) : iconType === "checkList" ? (_jsx(CheckList, { width: iconSize, height: iconSize })) : iconType === "penEdit" ? (_jsx(PenEdit, { width: iconSize, height: iconSize })) : iconType === "globeSearch" ? (_jsx(GlobeSearch, { width: iconSize, height: iconSize })) : iconType === "groupIcon" ? (_jsx(GroupIcon, { width: iconSize, height: iconSize })) : iconType === "jD" ? (_jsx(JD, {})) : iconType === "hiringCompany" ? (_jsx(HiringCompany, {})) : iconType === "sampleProfiles" ? (_jsx(SampleProfiles, {})) : iconType === "matchingProfile" ? (_jsx(MatchingProfile, {})) : iconType === "clipBoard" ? (_jsx(ClipBoard, { width: iconSize, height: iconSize })) : iconType === "sortascending" ? (_jsx(SortAscending, { width: iconSize, height: iconSize })) : iconType === "sortdescending" ? (_jsx(SortDescending, { width: iconSize, height: iconSize })) : iconType === "hourglass" ? (_jsx(HourGlass, { width: iconSize, height: iconSize })) : iconType === "exclamation" ? (_jsx(Exclamation, { width: iconSize, height: iconSize })) : iconType === "refresh-ccw" ? (_jsx(RefreshCounterClockWise, { width: iconSize, height: iconSize })) : iconType === "adjustment" ? (_jsx(Adjustment, { width: iconSize, height: iconSize })) : iconType === "outlook" ? (_jsx(Outlook, { width: iconSize, height: iconSize })) : iconType === "menu-alt" ? (_jsx(MenuAlt, { width: iconSize, height: iconSize })) : iconType === "simpler-tick" ? (_jsx(SimplerTick, { width: iconSize, height: iconSize })) : iconType === "menu-extended" ? (_jsx(MenuExtended, { width: iconSize, height: iconSize })) : iconType === "umberalla" ? (_jsx(Umberalla, { width: iconSize, height: iconSize })) : iconType === "sidebar" ? (_jsx(Sidebar, { width: iconSize, height: iconSize })) : iconType === "paperClip" ? (_jsx(PaperClip, { width: iconSize, height: iconSize })) : iconType === "document" ? (_jsx(Document, { width: iconSize, height: iconSize })) : iconType === "file" ? (_jsx(File, { width: iconSize, height: iconSize })) : iconType === "google" ? (_jsx(Google, { width: iconSize, height: iconSize })) : iconType === "pdf" ? (_jsx(PDF, { width: iconSize, height: iconSize })) : iconType === "enter" ? (_jsx(Enter, { width: iconSize, height: iconSize })) : iconType === "key" ? (_jsx(Key, { width: iconSize, height: iconSize })) : iconType === "cornerDown" ? (_jsx(CornerDown, { width: iconSize, height: iconSize })) : iconType === "notAllowed" ? (_jsx(NotAllowed, { width: iconSize, height: iconSize })) : iconType === "university" ? (_jsx(University, { width: iconSize, height: iconSize })) : iconType === "pause" ? (_jsx(Pause, { width: iconSize, height: iconSize })) : iconType === "resume" ? (_jsx(Resume, { width: iconSize, height: iconSize })) : iconType === "ascendingOrder" ? (_jsx(AscendingOrder, { width: iconSize, height: iconSize })) : iconType === "descendingOrder" ? (_jsx(DescendingOrder, { width: iconSize, height: iconSize })) : iconType === "userClock" ? (_jsx(UserClock, { width: iconSize, height: iconSize })) : iconType === "tickVerification" ? (_jsx(TickVerification, { width: iconSize, height: iconSize })) : iconType === "copied" ? (_jsx(Copied, { width: iconSize, height: iconSize })) : iconType === "archive" ? (_jsx(Archive, { width: iconSize, height: iconSize })) : iconType === "additionalInformation" ? (_jsx(AdditionalInformation, { width: iconSize, height: iconSize })) : iconType === "checkCircle" ? (_jsx(CheckCircle, { width: iconSize, height: iconSize })) : iconType === "companyClock" ? (_jsx(CompanyClock, { width: iconSize, height: iconSize })) : iconType === "boldPlus" ? (_jsx(BoldPlus, { width: iconSize, height: iconSize })) : iconType === "square" ? (_jsx(Square, { width: iconSize, height: iconSize })) : iconType === "boxPencil" ? (_jsx(BoxPencil, { width: iconSize, height: iconSize })) : iconType === "companyOwnership" ? (_jsx(CompanyOwnership, { width: iconSize, height: iconSize })) : iconType === "cutBriefcase" ? (_jsx(CutBriefcase, { width: iconSize, height: iconSize })) : iconType === "box" ? (_jsx(Box, { width: iconSize, height: iconSize })) : iconType === "googleLogo" ? (_jsx(GoogleLogo, { width: iconSize, height: iconSize })) : iconType === "microsoftLogo" ? (_jsx(MicrosoftLogo, { width: iconSize, height: iconSize })) : iconType === "people" ? (_jsx(People, { width: iconSize, height: iconSize })) : iconType === "crunchBaseLogo" ? (_jsx(CrunchBaseLogo, { width: iconSize, height: iconSize })) : iconType === "linkedinColoredLogo" ? (_jsx(LinkedinColoredLogo, { width: iconSize, height: iconSize })) : iconType === "googleColoredLogo" ? (_jsx(GoogleColoredLogo, { width: iconSize, height: iconSize })) : iconType === "websiteBadge" ? (_jsx(WebsiteBadge, { width: iconSize, height: iconSize })) : iconType === "arrowLeftShort" ? (_jsx(ArrowLeftShort, { width: iconSize, height: iconSize })) : iconType === "lock" ? (_jsx(Lock, { width: iconSize, height: iconSize })) : null;
|
|
146
|
+
return iconType === "cross" ? (_jsx(Cross, { width: iconSize, height: iconSize })) : iconType === "plus" ? (_jsx(Plus, { width: iconSize, height: iconSize })) : iconType === "thumb" ? (_jsx(Thumb, { width: iconSize, height: iconSize })) : iconType === "clock" ? (_jsx(Clock, { width: iconSize, height: iconSize })) : iconType === "tick" ? (_jsx(Tick, { width: iconSize, height: iconSize })) : iconType === "linkedinLogo" ? (_jsx(LinkedinLogo, { width: iconSize, height: iconSize })) : iconType === "searchArrow" ? (_jsx(SearchArrow, { width: iconSize, height: iconSize })) : iconType === "excalamationCircle" ? (_jsx(ExclamationCircle, { width: iconSize, height: iconSize })) : iconType === "edit" ? (_jsx(Edit, { width: iconSize, height: iconSize })) : iconType === "delete" ? (_jsx(Delete, { width: iconSize, height: iconSize })) : iconType === "chatOneBallon" ? (_jsx(ChatOneballon, { width: iconSize, height: iconSize })) : iconType === "qluLogo" ? (_jsx(QluLogo, { width: iconSize, height: iconSize })) : iconType === "gear" ? (_jsx(Gear, { width: iconSize, height: iconSize })) : iconType === "home" ? (_jsx(Home, { width: iconSize, height: iconSize })) : iconType === "paperPlaneUpRight" ? (_jsx(PaperPlaneUpRight, { width: iconSize, height: iconSize })) : iconType === "search" ? (_jsx(Search, { width: iconSize, height: iconSize })) : iconType === "chat" ? (_jsx(Chat, { width: iconSize, height: iconSize })) : iconType === "briefcase" ? (_jsx(Briefcase, { width: iconSize, height: iconSize })) : iconType === "barGraph" ? (_jsx(BarGraph, { width: iconSize, height: iconSize })) : iconType === "book" ? (_jsx(Book, { width: iconSize, height: iconSize })) : iconType === "company" ? (_jsx(Company, { width: iconSize, height: iconSize })) : iconType === "dollarBriefcase" ? (_jsx(DollarBriefcase, { width: iconSize, height: iconSize })) : iconType === "industry" ? (_jsx(Industry, { width: iconSize, height: iconSize })) : iconType === "jobTitle" ? (_jsx(JobTitle, { width: iconSize, height: iconSize })) : iconType === "location" ? (_jsx(Location, { width: iconSize, height: iconSize })) : iconType === "strategyPath" ? (_jsx(StrategyPath, { width: iconSize, height: iconSize })) : iconType === "tools" ? (_jsx(Tools, { width: iconSize, height: iconSize })) : iconType === "management" ? (_jsx(Management, { width: iconSize, height: iconSize })) : iconType === "employees" ? (_jsx(Employees, { width: iconSize, height: iconSize })) : iconType === "cheveronDown" ? (_jsx(CheveronDown, { width: iconSize, height: iconSize })) : iconType === "cheveronUp" ? (_jsx(CheveronUp, { width: iconSize, height: iconSize })) : iconType === "arrowLeft" ? (_jsx(ArrowLeft, { width: iconSize, height: iconSize })) : iconType === "arrowRight" ? (_jsx(ArrowRight, { width: iconSize, height: iconSize })) : iconType === "passTick" ? (_jsx(PassTick, { width: iconSize, height: iconSize })) : iconType === "doNotInclude" ? (_jsx(DoNotInclude, { width: iconSize, height: iconSize })) : iconType === "tickCircle" ? (_jsx(TickCircle, { width: iconSize, height: iconSize })) : iconType === "phone" ? (_jsx(Phone, { width: iconSize, height: iconSize })) : iconType === "email" ? (_jsx(Email, { width: iconSize, height: iconSize })) : iconType === "eye" ? (_jsx(Eye, { width: iconSize, height: iconSize })) : iconType === "eyeOff" ? (_jsx(EyeOff, { width: iconSize, height: iconSize })) : iconType === "congratulations" ? (_jsx(Congratulations, {})) : iconType === "heart" ? (_jsx(Heart, { width: iconSize, height: iconSize })) : iconType === "questionMark" ? (_jsx(QuestionMark, { width: iconSize, height: iconSize })) : iconType === "kebab" ? (_jsx(Kebab, { width: iconSize, height: iconSize })) : iconType === "calendar" ? (_jsx(Calendar, { width: iconSize, height: iconSize })) : iconType === "officeBuilding" ? (_jsx(OfficeBuilding, { width: iconSize, height: iconSize })) : iconType === "notes" ? (_jsx(Notes, { width: iconSize, height: iconSize })) : iconType === "star" ? (_jsx(Star, { width: iconSize, height: iconSize })) : iconType === "filterFunel" ? (_jsx(FilterFunel, { width: iconSize, height: iconSize })) : iconType === "sortUpDownArrows" ? (_jsx(SortUpDownArrows, { width: iconSize, height: iconSize })) : iconType === "download" ? (_jsx(Download, { width: iconSize, height: iconSize })) : iconType === "sparkles" ? (_jsx(Sparkles, { width: iconSize, height: iconSize })) : iconType === "writeNotes" ? (_jsx(WriteNotes, { width: iconSize, height: iconSize })) : iconType === "undo" ? (_jsx(Undo, { width: iconSize, height: iconSize })) : iconType === "emailSend" ? (_jsx(EmailSend, { width: iconSize, height: iconSize })) : iconType === "copy" ? (_jsx(Copy, { width: iconSize, height: iconSize })) : iconType === "openLink" ? (_jsx(OpenLink, { width: iconSize, height: iconSize })) : iconType === "internalUser" ? (_jsx(InternalUser, { width: iconSize, height: iconSize })) : iconType === "link" ? (_jsx(Link, { width: iconSize, height: iconSize })) : iconType === "bell" ? (_jsx(Bell, { width: iconSize, height: iconSize })) : iconType === "graduationHat" ? (_jsx(GraduationHat, { width: iconSize, height: iconSize })) : iconType === "user" ? (_jsx(User, { width: iconSize, height: iconSize })) : iconType === "password" ? (_jsx(Password, { width: iconSize, height: iconSize })) : iconType === "emailDisconnected" ? (_jsx(EmailDisconnected, { width: iconSize, height: iconSize })) : iconType === "bolt" ? (_jsx(Bolt, { width: iconSize, height: iconSize })) : iconType === "images" ? (_jsx(Images, { width: iconSize, height: iconSize })) : iconType === "information" ? (_jsx(Information, { width: iconSize, height: iconSize })) : iconType === "inviteUser" ? (_jsx(InviteUser, { width: iconSize, height: iconSize })) : iconType === "list" ? (_jsx(List, { width: iconSize, height: iconSize })) : iconType === "table" ? (_jsx(Table, { width: iconSize, height: iconSize })) : iconType === "arrowDown" ? (_jsx(ArrowDown, { width: iconSize, height: iconSize })) : iconType === "arrowUp" ? (_jsx(ArrowUp, { width: iconSize, height: iconSize })) : iconType === "chevronLeft" ? (_jsx(ChevronLeft, { width: iconSize, height: iconSize })) : iconType === "chevronRight" ? (_jsx(ChevronRight, { width: iconSize, height: iconSize })) : iconType === "radio" ? (_jsx(Radio, { width: iconSize, height: iconSize })) : iconType === "like" ? (_jsx(Like, { width: iconSize, height: iconSize })) : iconType === "unlike" ? (_jsx(Unlike, { width: iconSize, height: iconSize })) : iconType === "refresh" ? (_jsx(Refresh, { width: iconSize, height: iconSize })) : iconType === "emailRound" ? (_jsx(EmailRound, { width: iconSize, height: iconSize })) : iconType === "abstractGeometric" ? (_jsx(AbstractGeometric, { width: iconSize, height: iconSize })) : iconType === "seo" ? (_jsx(Seo, { width: iconSize, height: iconSize })) : iconType === "abstractCircle" ? (_jsx(AbstractCircle, { width: iconSize, height: iconSize })) : iconType === "checkList" ? (_jsx(CheckList, { width: iconSize, height: iconSize })) : iconType === "penEdit" ? (_jsx(PenEdit, { width: iconSize, height: iconSize })) : iconType === "globeSearch" ? (_jsx(GlobeSearch, { width: iconSize, height: iconSize })) : iconType === "groupIcon" ? (_jsx(GroupIcon, { width: iconSize, height: iconSize })) : iconType === "jD" ? (_jsx(JD, {})) : iconType === "hiringCompany" ? (_jsx(HiringCompany, {})) : iconType === "sampleProfiles" ? (_jsx(SampleProfiles, {})) : iconType === "matchingProfile" ? (_jsx(MatchingProfile, {})) : iconType === "clipBoard" ? (_jsx(ClipBoard, { width: iconSize, height: iconSize })) : iconType === "sortascending" ? (_jsx(SortAscending, { width: iconSize, height: iconSize })) : iconType === "sortdescending" ? (_jsx(SortDescending, { width: iconSize, height: iconSize })) : iconType === "hourglass" ? (_jsx(HourGlass, { width: iconSize, height: iconSize })) : iconType === "exclamation" ? (_jsx(Exclamation, { width: iconSize, height: iconSize })) : iconType === "refresh-ccw" ? (_jsx(RefreshCounterClockWise, { width: iconSize, height: iconSize })) : iconType === "adjustment" ? (_jsx(Adjustment, { width: iconSize, height: iconSize })) : iconType === "outlook" ? (_jsx(Outlook, { width: iconSize, height: iconSize })) : iconType === "menu-alt" ? (_jsx(MenuAlt, { width: iconSize, height: iconSize })) : iconType === "simpler-tick" ? (_jsx(SimplerTick, { width: iconSize, height: iconSize })) : iconType === "menu-extended" ? (_jsx(MenuExtended, { width: iconSize, height: iconSize })) : iconType === "umberalla" ? (_jsx(Umberalla, { width: iconSize, height: iconSize })) : iconType === "sidebar" ? (_jsx(Sidebar, { width: iconSize, height: iconSize })) : iconType === "paperClip" ? (_jsx(PaperClip, { width: iconSize, height: iconSize })) : iconType === "document" ? (_jsx(Document, { width: iconSize, height: iconSize })) : iconType === "file" ? (_jsx(File, { width: iconSize, height: iconSize })) : iconType === "google" ? (_jsx(Google, { width: iconSize, height: iconSize })) : iconType === "pdf" ? (_jsx(PDF, { width: iconSize, height: iconSize })) : iconType === "enter" ? (_jsx(Enter, { width: iconSize, height: iconSize })) : iconType === "key" ? (_jsx(Key, { width: iconSize, height: iconSize })) : iconType === "cornerDown" ? (_jsx(CornerDown, { width: iconSize, height: iconSize })) : iconType === "notAllowed" ? (_jsx(NotAllowed, { width: iconSize, height: iconSize })) : iconType === "university" ? (_jsx(University, { width: iconSize, height: iconSize })) : iconType === "pause" ? (_jsx(Pause, { width: iconSize, height: iconSize })) : iconType === "resume" ? (_jsx(Resume, { width: iconSize, height: iconSize })) : iconType === "ascendingOrder" ? (_jsx(AscendingOrder, { width: iconSize, height: iconSize })) : iconType === "descendingOrder" ? (_jsx(DescendingOrder, { width: iconSize, height: iconSize })) : iconType === "userClock" ? (_jsx(UserClock, { width: iconSize, height: iconSize })) : iconType === "tickVerification" ? (_jsx(TickVerification, { width: iconSize, height: iconSize })) : iconType === "copied" ? (_jsx(Copied, { width: iconSize, height: iconSize })) : iconType === "archive" ? (_jsx(Archive, { width: iconSize, height: iconSize })) : iconType === "additionalInformation" ? (_jsx(AdditionalInformation, { width: iconSize, height: iconSize })) : iconType === "checkCircle" ? (_jsx(CheckCircle, { width: iconSize, height: iconSize })) : iconType === "companyClock" ? (_jsx(CompanyClock, { width: iconSize, height: iconSize })) : iconType === "boldPlus" ? (_jsx(BoldPlus, { width: iconSize, height: iconSize })) : iconType === "square" ? (_jsx(Square, { width: iconSize, height: iconSize })) : iconType === "boxPencil" ? (_jsx(BoxPencil, { width: iconSize, height: iconSize })) : iconType === "companyOwnership" ? (_jsx(CompanyOwnership, { width: iconSize, height: iconSize })) : iconType === "cutBriefcase" ? (_jsx(CutBriefcase, { width: iconSize, height: iconSize })) : iconType === "box" ? (_jsx(Box, { width: iconSize, height: iconSize })) : iconType === "googleLogo" ? (_jsx(GoogleLogo, { width: iconSize, height: iconSize })) : iconType === "microsoftLogo" ? (_jsx(MicrosoftLogo, { width: iconSize, height: iconSize })) : iconType === "people" ? (_jsx(People, { width: iconSize, height: iconSize })) : iconType === "crunchBaseLogo" ? (_jsx(CrunchBaseLogo, { width: iconSize, height: iconSize })) : iconType === "linkedinColoredLogo" ? (_jsx(LinkedinColoredLogo, { width: iconSize, height: iconSize })) : iconType === "googleColoredLogo" ? (_jsx(GoogleColoredLogo, { width: iconSize, height: iconSize })) : iconType === "websiteBadge" ? (_jsx(WebsiteBadge, { width: iconSize, height: iconSize })) : iconType === "arrowLeftShort" ? (_jsx(ArrowLeftShort, { width: iconSize, height: iconSize })) : iconType === "notDownloaded" ? (_jsx(NotDownloaded, { width: iconSize, height: iconSize })) : iconType === "lock" ? (_jsx(Lock, { width: iconSize, height: iconSize })) : iconType === "companyStrategy" ? (_jsx(CompanyStrategy, { width: iconSize, height: iconSize })) : iconType === "industryStrategy" ? (_jsx(IndustryStrategy, { width: iconSize, height: iconSize })) : iconType === "strategyUpdate" ? (_jsx(UpdateStrategy, { width: iconSize, height: iconSize })) : null;
|
|
143
147
|
};
|
|
144
148
|
export default GetSvgIcon;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
const Archive = ({ width = "20", height = "20" }) => {
|
|
3
|
-
return (_jsxs("svg", { width: width, height: height, viewBox: "0 0
|
|
3
|
+
return (_jsxs("svg", { width: width, height: height, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [_jsx("path", { d: "M13.5999 5.60001V11.6C13.5999 12.7046 12.7045 13.6 11.5999 13.6H4.3999C3.29533 13.6 2.3999 12.7046 2.3999 11.6V5.60001", stroke: "#FF8D4E", "stroke-linecap": "round", "stroke-linejoin": "round" }), _jsx("path", { d: "M14.3337 2H1.66699C1.11471 2 0.666992 2.44771 0.666992 3V4.33333C0.666992 4.88562 1.11471 5.33333 1.66699 5.33333H14.3337C14.8859 5.33333 15.3337 4.88562 15.3337 4.33333V3C15.3337 2.44772 14.8859 2 14.3337 2Z", stroke: "#FF8D4E", "stroke-linecap": "round", "stroke-linejoin": "round" }), _jsx("path", { d: "M9.11084 9.65435L7.99973 10.8889M7.99973 10.8889L6.88862 9.65435M7.99973 10.8889L7.99973 8.11114", stroke: "#FF8D4E", "stroke-linecap": "round", "stroke-linejoin": "round" })] }));
|
|
4
4
|
};
|
|
5
5
|
export default Archive;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const CompanyStrategy = ({ width = "24", height = "24", }) => {
|
|
3
|
+
return (_jsxs("svg", { width: width, height: height, viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [_jsx("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M6.37547 5.75H8.62641C9.24799 5.75 9.75187 6.25389 9.75187 6.87547V9.12641H5.25V6.87547C5.25 6.25389 5.75389 5.75 6.37547 5.75V5.75Z", stroke: "#C1C1C1", "stroke-width": "1.5", "stroke-linecap": "round", "stroke-linejoin": "round" }), _jsx("path", { d: "M7.50021 3.49609V5.74703", stroke: "#C1C1C1", "stroke-width": "1.5", "stroke-linecap": "round", "stroke-linejoin": "round" }), _jsx("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M2.99609 21.5052V10.2505C2.99609 9.62889 3.49998 9.125 4.12156 9.125H10.8744C11.496 9.125 11.9998 9.62889 11.9998 10.2505V21.5052H8.25021C8.25021 21.5048 8.25021 21.5045 8.25021 21.5041V19.8164C8.25021 19.4022 7.91442 19.0664 7.50021 19.0664C7.08599 19.0664 6.75021 19.4022 6.75021 19.8164V21.5041C6.75021 21.5045 6.75021 21.5048 6.75021 21.5052H2.99609ZM5.0625 15.8791C5.0625 15.4649 5.39829 15.1291 5.8125 15.1291H9.18891C9.60312 15.1291 9.93891 15.4649 9.93891 15.8791C9.93891 16.2933 9.60312 16.6291 9.18891 16.6291H5.8125C5.39829 16.6291 5.0625 16.2933 5.0625 15.8791ZM5.0625 12.5002C5.0625 12.086 5.39829 11.7502 5.8125 11.7502H9.18891C9.60312 11.7502 9.93891 12.086 9.93891 12.5002C9.93891 12.9144 9.60312 13.2502 9.18891 13.2502H5.8125C5.39829 13.2502 5.0625 12.9144 5.0625 12.5002Z", fill: "#C1C1C1" }), _jsx("path", { d: "M22.0044 21.5041H1.99609", stroke: "#C1C1C1", "stroke-width": "1.5", "stroke-linecap": "round", "stroke-linejoin": "round" }), _jsx("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M21.0038 21.5061V4.78613C21.0023 4.36504 20.7949 3.97129 20.4485 3.73195C20.102 3.4926 19.6604 3.43795 19.266 3.58563L12.8344 5.99363C12.3316 6.18208 11.9989 6.66318 12 7.20013V21.5061H21.0038ZM15.0002 8.80859C15.4144 8.80859 15.7502 9.14438 15.7502 9.55859V17.5049C15.7502 17.9191 15.4144 18.2549 15.0002 18.2549C14.586 18.2549 14.2502 17.9191 14.2502 17.5049V9.55859C14.2502 9.14438 14.586 8.80859 15.0002 8.80859ZM18.7502 9.55859C18.7502 9.14438 18.4144 8.80859 18.0002 8.80859C17.586 8.80859 17.2502 9.14438 17.2502 9.55859V17.5049C17.2502 17.9191 17.586 18.2549 18.0002 18.2549C18.4144 18.2549 18.7502 17.9191 18.7502 17.5049V9.55859Z", fill: "#C1C1C1" })] }));
|
|
4
|
+
};
|
|
5
|
+
export default CompanyStrategy;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const IndustryStrategy = ({ width = "24", height = "24", }) => {
|
|
3
|
+
return (_jsxs("svg", { width: width, height: height, viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [_jsx("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3 22.5V8.5C3 7.94772 3.44772 7.5 4 7.5H6C6.55228 7.5 7 7.94772 7 8.5V22.5", fill: "#D5D5D5" }), _jsx("path", { d: "M22 22.5H2", stroke: "#D5D5D5", "stroke-width": "1.5", "stroke-linecap": "round", "stroke-linejoin": "round" }), _jsx("path", { d: "M5 4.5C5 3.39543 5.89543 2.5 7 2.5H10", stroke: "#D5D5D5", "stroke-width": "1.5", "stroke-linecap": "round", "stroke-linejoin": "round" }), _jsx("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M7 11.5C7 10.9477 7.44772 10.5 8 10.5H20C20.5523 10.5 21 10.9477 21 11.5V21.5C21 22.0523 20.5523 22.5 20 22.5H16V18.5C16 17.9477 15.5523 17.5 15 17.5H13C12.4477 17.5 12 17.9477 12 18.5V22.5H8C7.44772 22.5 7 22.0523 7 21.5V11.5ZM10 13.25C9.58579 13.25 9.25 13.5858 9.25 14C9.25 14.4142 9.58579 14.75 10 14.75H18C18.4142 14.75 18.75 14.4142 18.75 14C18.75 13.5858 18.4142 13.25 18 13.25H10Z", fill: "#D5D5D5" })] }));
|
|
4
|
+
};
|
|
5
|
+
export default IndustryStrategy;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const NotDownloaded = ({ width = "24", height = "24", }) => {
|
|
3
|
+
return (_jsxs("svg", { width: width, height: height, viewBox: "0 0 16 17", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [_jsxs("g", { "clip-path": "url(#clip0_11597_226379)", children: [_jsx("path", { d: "M1 12.5V13.375M15 12.5V13.375C15 14.0712 14.7234 14.7389 14.2312 15.2312C13.7389 15.7234 13.0712 16 12.375 16H3.625C3.17048 15.9858 3 16 3 16M11.5 9L8 12.5M8 12.5L7.5 12M8 12.5V11.5V11M4.5 9L5 9.5M8 2V4.625V6.5", stroke: "#C1C1C1", "stroke-linecap": "round", "stroke-linejoin": "round" }), _jsx("path", { d: "M1 15.8999L14.435 2.46487", stroke: "#C1C1C1", "stroke-width": "1.2", "stroke-linecap": "round" })] }), _jsx("defs", { children: _jsx("clipPath", { id: "clip0_11597_226379", children: _jsx("rect", { width: "16", height: "16", fill: "white", transform: "translate(0 0.5)" }) }) })] }));
|
|
4
|
+
};
|
|
5
|
+
export default NotDownloaded;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const UpdateStrategy = ({ width = "24", height = "24", }) => {
|
|
3
|
+
return (_jsxs("svg", { width: width, height: height, viewBox: "0 0 33 32", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [_jsx("rect", { x: "0.5", width: "32", height: "32", rx: "8", fill: "#014737" }), _jsx("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M23.2069 11.2928C23.3944 11.4803 23.4997 11.7346 23.4997 11.9998C23.4997 12.265 23.3944 12.5193 23.2069 12.7068L15.2069 20.7068C15.0194 20.8943 14.7651 20.9996 14.4999 20.9996C14.2348 20.9996 13.9804 20.8943 13.7929 20.7068L9.79292 16.7068C9.61076 16.5182 9.50997 16.2656 9.51224 16.0034C9.51452 15.7412 9.61969 15.4904 9.8051 15.305C9.99051 15.1196 10.2413 15.0144 10.5035 15.0121C10.7657 15.0098 11.0183 15.1106 11.2069 15.2928L14.4999 18.5858L21.7929 11.2928C21.9804 11.1053 22.2348 11 22.4999 11C22.7651 11 23.0194 11.1053 23.2069 11.2928Z", fill: "#31C48D" })] }));
|
|
4
|
+
};
|
|
5
|
+
export default UpdateStrategy;
|
package/dist/types/types.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { companyLineChartFinancialTabProp } from "./components/CompanyLineChartF
|
|
|
4
4
|
import { IProduct } from "./components/CompanyProductsTab";
|
|
5
5
|
import { ICompetitor } from "./components/CompetitorsCompanyTab";
|
|
6
6
|
import { Education, Experience } from "./components/PeopleCard/interface";
|
|
7
|
-
export type IconType = "checkList" | "abstractCircle" | "seo" | "abstractGeometric" | "penEdit" | "plus" | "cross" | "thumb" | "clock" | "tick" | "linkedinLogo" | "searchArrow" | "excalamationCircle" | "edit" | "delete" | "chatOneBallon" | "qluLogo" | "gear" | "home" | "paperPlaneUpRight" | "search" | "chat" | "briefcase" | "barGraph" | "book" | "company" | "dollarBriefcase" | "industry" | "jobTitle" | "location" | "strategyPath" | "tools" | "employees" | "management" | "cheveronDown" | "cheveronUp" | "passTick" | "arrowLeft" | "arrowRight" | "doNotInclude" | "tickCircle" | "phone" | "email" | "eye" | "eyeOff" | "congratulations" | "heart" | "questionMark" | "officeBuilding" | "calendar" | "notes" | "kebab" | "star" | "filterFunel" | "sortUpDownArrows" | "download" | "sparkles" | "writeNotes" | "undo" | "emailSend" | "copy" | "openLink" | "internalUser" | "bell" | "graduationHat" | "link" | "user" | "password" | "emailDisconnected" | "bolt" | "images" | "information" | "inviteUser" | "list" | "table" | "arrowDown" | "arrowUp" | "chevronLeft" | "chevronRight" | "radio" | "like" | "unlike" | "refresh" | "emailRound" | "globeSearch" | "groupIcon" | "jD" | "hiringCompany" | "sampleProfiles" | "matchingProfile" | "clipBoard" | "sortascending" | "sortdescending" | "exclamation" | "refresh-ccw" | "hourglass" | "outlook" | "menu-alt" | "simpler-tick" | "menu-extended" | "umberalla" | "sidebar" | "paperClip" | "adjustment" | "document" | "file" | "google" | "enter" | "key" | "cornerDown" | "pdf" | "notAllowed" | "pause" | "resume" | "university" | "userClock" | "ascendingOrder" | "descendingOrder" | "tickVerification" | "copied" | "archive" | "additionalInformation" | "checkCircle" | "companyClock" | "companyOwnership" | "cutBriefcase" | "box" | "lock" | "boldPlus" | "square" | "boxPencil" | "people" | "microsoftLogo" | "googleLogo" | "crunchBaseLogo" | "linkedinColoredLogo" | "googleColoredLogo" | "websiteBadge" | "arrowLeftShort";
|
|
7
|
+
export type IconType = "checkList" | "abstractCircle" | "seo" | "abstractGeometric" | "penEdit" | "plus" | "cross" | "thumb" | "clock" | "tick" | "linkedinLogo" | "searchArrow" | "excalamationCircle" | "edit" | "delete" | "chatOneBallon" | "qluLogo" | "gear" | "home" | "paperPlaneUpRight" | "search" | "chat" | "briefcase" | "barGraph" | "book" | "company" | "dollarBriefcase" | "industry" | "jobTitle" | "location" | "strategyPath" | "tools" | "employees" | "management" | "cheveronDown" | "cheveronUp" | "passTick" | "arrowLeft" | "arrowRight" | "doNotInclude" | "tickCircle" | "phone" | "email" | "eye" | "eyeOff" | "congratulations" | "heart" | "questionMark" | "officeBuilding" | "calendar" | "notes" | "kebab" | "star" | "filterFunel" | "sortUpDownArrows" | "download" | "sparkles" | "writeNotes" | "undo" | "emailSend" | "copy" | "openLink" | "internalUser" | "bell" | "graduationHat" | "link" | "user" | "password" | "emailDisconnected" | "bolt" | "images" | "information" | "inviteUser" | "list" | "table" | "arrowDown" | "arrowUp" | "chevronLeft" | "chevronRight" | "radio" | "like" | "unlike" | "refresh" | "emailRound" | "globeSearch" | "groupIcon" | "jD" | "hiringCompany" | "sampleProfiles" | "matchingProfile" | "clipBoard" | "sortascending" | "sortdescending" | "exclamation" | "refresh-ccw" | "hourglass" | "outlook" | "menu-alt" | "simpler-tick" | "menu-extended" | "umberalla" | "sidebar" | "paperClip" | "adjustment" | "document" | "file" | "google" | "enter" | "key" | "cornerDown" | "pdf" | "notAllowed" | "pause" | "resume" | "university" | "userClock" | "ascendingOrder" | "descendingOrder" | "tickVerification" | "copied" | "archive" | "additionalInformation" | "checkCircle" | "companyClock" | "companyOwnership" | "cutBriefcase" | "box" | "lock" | "boldPlus" | "square" | "boxPencil" | "people" | "microsoftLogo" | "googleLogo" | "crunchBaseLogo" | "linkedinColoredLogo" | "googleColoredLogo" | "websiteBadge" | "arrowLeftShort" | "notDownloaded";
|
|
8
8
|
export type SelectedUnselectedErrorVariant = "selected" | "excluded" | "unselected" | "error";
|
|
9
9
|
export type IconSize = "2" | "4" | "6" | "8" | "10" | "12" | "14" | "16" | "18" | "20" | "22" | "24" | "26" | "28" | "30" | "32" | "34" | "36" | "38" | "40" | "44" | "48" | "52" | "56" | "58" | "64" | "72" | "80" | "88" | "120" | "280";
|
|
10
10
|
export type TopNavbarButtonTypes = "Home" | "Chat" | "Search" | "Assignments" | "Campaigns" | "Settings";
|
package/dist/types.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { companyLineChartFinancialTabProp } from "./components/CompanyLineChartF
|
|
|
4
4
|
import { IProduct } from "./components/CompanyProductsTab";
|
|
5
5
|
import { ICompetitor } from "./components/CompetitorsCompanyTab";
|
|
6
6
|
import { Education, Experience } from "./components/PeopleCard/interface";
|
|
7
|
-
export type IconType = "checkList" | "abstractCircle" | "seo" | "abstractGeometric" | "penEdit" | "plus" | "cross" | "thumb" | "clock" | "tick" | "linkedinLogo" | "searchArrow" | "excalamationCircle" | "edit" | "delete" | "chatOneBallon" | "qluLogo" | "gear" | "home" | "paperPlaneUpRight" | "search" | "chat" | "briefcase" | "barGraph" | "book" | "company" | "dollarBriefcase" | "industry" | "jobTitle" | "location" | "strategyPath" | "tools" | "employees" | "management" | "cheveronDown" | "cheveronUp" | "passTick" | "arrowLeft" | "arrowRight" | "doNotInclude" | "tickCircle" | "phone" | "email" | "eye" | "eyeOff" | "congratulations" | "heart" | "questionMark" | "officeBuilding" | "calendar" | "notes" | "kebab" | "star" | "filterFunel" | "sortUpDownArrows" | "download" | "sparkles" | "writeNotes" | "undo" | "emailSend" | "copy" | "openLink" | "internalUser" | "bell" | "graduationHat" | "link" | "user" | "password" | "emailDisconnected" | "bolt" | "images" | "information" | "inviteUser" | "list" | "table" | "arrowDown" | "arrowUp" | "chevronLeft" | "chevronRight" | "radio" | "like" | "unlike" | "refresh" | "emailRound" | "globeSearch" | "groupIcon" | "jD" | "hiringCompany" | "sampleProfiles" | "matchingProfile" | "clipBoard" | "sortascending" | "sortdescending" | "exclamation" | "refresh-ccw" | "hourglass" | "outlook" | "menu-alt" | "simpler-tick" | "menu-extended" | "umberalla" | "sidebar" | "paperClip" | "adjustment" | "document" | "file" | "google" | "enter" | "key" | "cornerDown" | "pdf" | "notAllowed" | "pause" | "resume" | "university" | "userClock" | "ascendingOrder" | "descendingOrder" | "tickVerification" | "copied" | "archive" | "additionalInformation" | "checkCircle" | "companyClock" | "companyOwnership" | "cutBriefcase" | "box" | "lock" | "boldPlus" | "square" | "boxPencil" | "people" | "microsoftLogo" | "googleLogo" | "crunchBaseLogo" | "linkedinColoredLogo" | "googleColoredLogo" | "websiteBadge" | "arrowLeftShort";
|
|
7
|
+
export type IconType = "checkList" | "abstractCircle" | "seo" | "abstractGeometric" | "penEdit" | "plus" | "cross" | "thumb" | "clock" | "tick" | "linkedinLogo" | "searchArrow" | "excalamationCircle" | "edit" | "delete" | "chatOneBallon" | "qluLogo" | "gear" | "home" | "paperPlaneUpRight" | "search" | "chat" | "briefcase" | "barGraph" | "book" | "company" | "dollarBriefcase" | "industry" | "jobTitle" | "location" | "strategyPath" | "tools" | "employees" | "management" | "cheveronDown" | "cheveronUp" | "passTick" | "arrowLeft" | "arrowRight" | "doNotInclude" | "tickCircle" | "phone" | "email" | "eye" | "eyeOff" | "congratulations" | "heart" | "questionMark" | "officeBuilding" | "calendar" | "notes" | "kebab" | "star" | "filterFunel" | "sortUpDownArrows" | "download" | "sparkles" | "writeNotes" | "undo" | "emailSend" | "copy" | "openLink" | "internalUser" | "bell" | "graduationHat" | "link" | "user" | "password" | "emailDisconnected" | "bolt" | "images" | "information" | "inviteUser" | "list" | "table" | "arrowDown" | "arrowUp" | "chevronLeft" | "chevronRight" | "radio" | "like" | "unlike" | "refresh" | "emailRound" | "globeSearch" | "groupIcon" | "jD" | "hiringCompany" | "sampleProfiles" | "matchingProfile" | "clipBoard" | "sortascending" | "sortdescending" | "exclamation" | "refresh-ccw" | "hourglass" | "outlook" | "menu-alt" | "simpler-tick" | "menu-extended" | "umberalla" | "sidebar" | "paperClip" | "adjustment" | "document" | "file" | "google" | "enter" | "key" | "cornerDown" | "pdf" | "notAllowed" | "pause" | "resume" | "university" | "userClock" | "ascendingOrder" | "descendingOrder" | "tickVerification" | "copied" | "archive" | "additionalInformation" | "checkCircle" | "companyClock" | "companyOwnership" | "cutBriefcase" | "box" | "lock" | "boldPlus" | "square" | "boxPencil" | "people" | "microsoftLogo" | "googleLogo" | "crunchBaseLogo" | "linkedinColoredLogo" | "googleColoredLogo" | "websiteBadge" | "arrowLeftShort" | "notDownloaded";
|
|
8
8
|
export type SelectedUnselectedErrorVariant = "selected" | "excluded" | "unselected" | "error";
|
|
9
9
|
export type IconSize = "2" | "4" | "6" | "8" | "10" | "12" | "14" | "16" | "18" | "20" | "22" | "24" | "26" | "28" | "30" | "32" | "34" | "36" | "38" | "40" | "44" | "48" | "52" | "56" | "58" | "64" | "72" | "80" | "88" | "120" | "280";
|
|
10
10
|
export type TopNavbarButtonTypes = "Home" | "Chat" | "Search" | "Assignments" | "Campaigns" | "Settings";
|