qlu-20-ui-library 1.1.5 → 1.1.6
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/AuthNavBar/index.d.ts +10 -0
- package/dist/components/AuthNavbarLogoSvg/AuthNavbarLogoSvg.d.ts +6 -0
- package/dist/components/AuthPhoneNumberInput/index.d.ts +7 -0
- package/dist/components/AvatarGroup/index.d.ts +8 -2
- package/dist/components/BadgeNonClickable/index.d.ts +12 -0
- package/dist/components/CircularSvgAndEmoji/index.d.ts +7 -0
- package/dist/components/CompanyPillNotClicakble/index.d.ts +9 -0
- package/dist/components/CompanyView/CompanyViewBody/index.d.ts +8 -0
- package/dist/components/CompanyView/CompanyViewEmployeeCard/index.d.ts +9 -0
- package/dist/components/CompanyView/CompanyViewHeader/index.d.ts +10 -0
- package/dist/components/CompanyView/CompanyViewLayout/index.d.ts +2 -0
- package/dist/components/CompanyView/CompanyViewPeople/index.d.ts +8 -0
- package/dist/components/CompanyView/CompanyViewSummary/index.d.ts +10 -0
- package/dist/components/CompanyView/CompanyViewTabsComponent/index.d.ts +11 -0
- package/dist/components/DropdownComponent/index.d.ts +9 -0
- package/dist/components/Emoji/Congratulations.d.ts +2 -0
- package/dist/components/FeedbackButton/index.d.ts +8 -0
- package/dist/components/FileUpload/index.d.ts +1 -1
- package/dist/components/FilterAddRemoveBadge/index.d.ts +10 -0
- package/dist/components/GetLogoIcon/index.d.ts +7 -0
- package/dist/components/HomeScreen/HomeScreenBody/index.d.ts +5 -0
- package/dist/components/HomeScreen/HomeScreenLayout/index.d.ts +5 -0
- package/dist/components/HomeScreen/HomeScreenOverview/index.d.ts +2 -0
- package/dist/components/HomeScreen/HomeScreenStatCard/index.d.ts +2 -0
- package/dist/components/HomeScreen/HomeScreenTabsComponent/index.d.ts +11 -0
- package/dist/components/InputField/index.d.ts +4 -1
- package/dist/components/Logo/Google.d.ts +6 -0
- package/dist/components/Logo/Outlook.d.ts +6 -0
- package/dist/components/LogoButton/index.d.ts +8 -0
- package/dist/components/Modal/index.d.ts +1 -1
- package/dist/components/OTP/index.d.ts +9 -0
- package/dist/components/PersonCompanyNameClickable/index.d.ts +7 -0
- package/dist/components/PersonView/PersonViewBody/index.d.ts +8 -0
- package/dist/components/PersonView/PersonViewExperienceCard/index.d.ts +11 -0
- package/dist/components/PersonView/PersonViewExperienceDetails/index.d.ts +7 -0
- package/dist/components/PersonView/PersonViewHeader/index.d.ts +10 -0
- package/dist/components/PersonView/PersonViewLayout/index.d.ts +2 -0
- package/dist/components/PersonView/PersonViewSummary/index.d.ts +8 -0
- package/dist/components/PersonView/PersonViewTabsComponent/index.d.ts +11 -0
- package/dist/components/ProgressBar/index.d.ts +5 -0
- package/dist/components/RecentChatComponent/{RecentChatComponent.d.ts → index.d.ts} +2 -1
- package/dist/components/SearchLocationDropdown/index.d.ts +8 -0
- package/dist/components/SearchPersonTable/index.d.ts +8 -1
- package/dist/components/SearchPersonTableContainer/index.d.ts +2 -0
- package/dist/components/SkillIndustryBadge/index.d.ts +6 -0
- package/dist/components/Svg/Email.d.ts +6 -0
- package/dist/components/Svg/Eye.d.ts +6 -0
- package/dist/components/Svg/EyeOff.d.ts +6 -0
- package/dist/components/Svg/Heart.d.ts +7 -0
- package/dist/components/Svg/Phone.d.ts +6 -0
- package/dist/components/Svg/QuestionMark.d.ts +7 -0
- package/dist/components/TablePagination/index.d.ts +12 -0
- package/dist/components/TextButton/index.d.ts +1 -1
- package/dist/components/ToggleComponent/index.d.ts +1 -0
- package/dist/components/index.d.ts +42 -7
- package/dist/index.css +1 -1
- package/dist/library.es.js +13690 -6495
- package/dist/library.umd.js +150 -18
- package/dist/types.d.ts +54 -1
- package/dist/utils.d.ts +45 -1
- package/package.json +1 -1
- package/dist/components/CompanyLogoPillSelectable/index.d.ts +0 -12
- package/dist/library.es.d.ts +0 -1
- /package/dist/components/ChatClickableCard/{ChatClickableCard.d.ts → index.d.ts} +0 -0
- /package/dist/components/ChatDropDown/{ChatDropDown.d.ts → index.d.ts} +0 -0
- /package/dist/components/ChatPeopleCard/{ChatPeopleCard.d.ts → index.d.ts} +0 -0
- /package/dist/components/ChatPopup/{ChatPopup.d.ts → index.d.ts} +0 -0
- /package/dist/components/ChatSearchBar/{ChatSearchBar.d.ts → index.d.ts} +0 -0
- /package/dist/components/Svg/{Passtick.d.ts → PassTick.d.ts} +0 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
interface AuthNavBarProps {
|
|
2
|
+
text: string;
|
|
3
|
+
textColor?: "gray" | "orange" | undefined;
|
|
4
|
+
textOnClick: () => void;
|
|
5
|
+
buttonText: string;
|
|
6
|
+
buttonColorVaraint: "primaryOrangeBorderAndText" | "primaryOrange" | "primaryOrangeBorder" | "alternativeDarkBorder";
|
|
7
|
+
buttonOnClick: () => void;
|
|
8
|
+
}
|
|
9
|
+
declare const AuthNavBar: ({ text, textColor, textOnClick, buttonText, buttonColorVaraint, buttonOnClick, }: AuthNavBarProps) => JSX.Element;
|
|
10
|
+
export default AuthNavBar;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
interface NumberFieldInputProps {
|
|
2
|
+
placeholderText?: string;
|
|
3
|
+
defaultCountry?: string;
|
|
4
|
+
handlePhoneChange: (value: string) => void;
|
|
5
|
+
}
|
|
6
|
+
declare const PhoneNumberInputField: ({ placeholderText, defaultCountry, handlePhoneChange, }: NumberFieldInputProps) => JSX.Element;
|
|
7
|
+
export default PhoneNumberInputField;
|
|
@@ -1,7 +1,13 @@
|
|
|
1
|
+
interface letterIcons {
|
|
2
|
+
letters: string;
|
|
3
|
+
lettersColor: string;
|
|
4
|
+
color: string;
|
|
5
|
+
}
|
|
1
6
|
interface AvatarGroupProps {
|
|
2
|
-
images
|
|
7
|
+
images?: string[];
|
|
8
|
+
letterIcons?: letterIcons[];
|
|
3
9
|
iconSize: "24" | "32" | "48" | "80";
|
|
4
10
|
counter?: number;
|
|
5
11
|
}
|
|
6
|
-
declare const AvatarGroup: ({ images, iconSize, counter }: AvatarGroupProps) => JSX.Element;
|
|
12
|
+
declare const AvatarGroup: ({ images, letterIcons, iconSize, counter }: AvatarGroupProps) => JSX.Element;
|
|
7
13
|
export default AvatarGroup;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { IconSize, IconType, BadgeTypes } from '../../types';
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
interface BadgeNonClickableProps {
|
|
4
|
+
showIconOnLeft?: boolean;
|
|
5
|
+
showIcon?: boolean;
|
|
6
|
+
iconType?: IconType;
|
|
7
|
+
iconSize?: IconSize;
|
|
8
|
+
text: string;
|
|
9
|
+
variant: BadgeTypes;
|
|
10
|
+
}
|
|
11
|
+
declare const BadgeNonClickable: FC<BadgeNonClickableProps>;
|
|
12
|
+
export default BadgeNonClickable;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { IconSize, IconType } from '../../types';
|
|
2
|
+
interface CircularSvgLabelProps {
|
|
3
|
+
iconType: IconType;
|
|
4
|
+
iconSize?: IconSize;
|
|
5
|
+
}
|
|
6
|
+
declare const CircularSvgAndEmoji: ({ iconType, iconSize, }: CircularSvgLabelProps) => JSX.Element;
|
|
7
|
+
export default CircularSvgAndEmoji;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IconSize } from '../../types';
|
|
2
|
+
interface CompanyPillNotClicakbleProps {
|
|
3
|
+
companyName: string;
|
|
4
|
+
companyIconPath: string;
|
|
5
|
+
style?: object;
|
|
6
|
+
companyIconSize?: IconSize;
|
|
7
|
+
}
|
|
8
|
+
declare const CompanyPillNotClicakble: ({ companyName, companyIconPath, style, companyIconSize }: CompanyPillNotClicakbleProps) => JSX.Element;
|
|
9
|
+
export default CompanyPillNotClicakble;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { CompanyViewSummaryTypes, CompanyViewTabsTypes } from '../../../types';
|
|
3
|
+
interface CompanyViewBodyProps {
|
|
4
|
+
companyViewActiveTab: CompanyViewTabsTypes;
|
|
5
|
+
companyViewSummaryPayload: CompanyViewSummaryTypes;
|
|
6
|
+
}
|
|
7
|
+
declare const CompanyViewBody: React.FC<CompanyViewBodyProps>;
|
|
8
|
+
export default CompanyViewBody;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface CompanyViewEmployeeCardProps {
|
|
3
|
+
picturePath: string;
|
|
4
|
+
fullName: string;
|
|
5
|
+
role: string;
|
|
6
|
+
previousEmployee?: boolean;
|
|
7
|
+
}
|
|
8
|
+
declare const CompanyViewEmployeeCard: React.FC<CompanyViewEmployeeCardProps>;
|
|
9
|
+
export default CompanyViewEmployeeCard;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface CompanyViewHeaderProps {
|
|
3
|
+
companyLogo: string;
|
|
4
|
+
companyName: string;
|
|
5
|
+
employeeCount: number;
|
|
6
|
+
location: string;
|
|
7
|
+
onCheckClick: () => void;
|
|
8
|
+
}
|
|
9
|
+
declare const CompanyViewHeader: React.FC<CompanyViewHeaderProps>;
|
|
10
|
+
export default CompanyViewHeader;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface CompanyViewPeopleProps {
|
|
3
|
+
onCompanyViewPeopleTabClick: (tab: string) => void;
|
|
4
|
+
activeCompanyViewPeopleTab: 'Current' | 'Previous';
|
|
5
|
+
children: React.ReactNode;
|
|
6
|
+
}
|
|
7
|
+
declare const CompanyViewPeople: React.FC<CompanyViewPeopleProps>;
|
|
8
|
+
export default CompanyViewPeople;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface CompanyViewSummaryProps {
|
|
3
|
+
about: string;
|
|
4
|
+
industries: string[];
|
|
5
|
+
employeeCount: number;
|
|
6
|
+
websiteUrl: string;
|
|
7
|
+
headquarter: string;
|
|
8
|
+
}
|
|
9
|
+
declare const CompanyViewSummary: React.FC<CompanyViewSummaryProps>;
|
|
10
|
+
export default CompanyViewSummary;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { CompanyViewTabsTypes } from '../../../types';
|
|
3
|
+
interface CompanyViewTabsComponentProps {
|
|
4
|
+
tabs: {
|
|
5
|
+
tabName: CompanyViewTabsTypes;
|
|
6
|
+
}[];
|
|
7
|
+
activeCompanyViewTab: CompanyViewTabsTypes;
|
|
8
|
+
onClick: (tabName: CompanyViewTabsTypes) => void;
|
|
9
|
+
}
|
|
10
|
+
declare const CompanyViewTabsComponent: React.FC<CompanyViewTabsComponentProps>;
|
|
11
|
+
export default CompanyViewTabsComponent;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface FeedbackButtonProps {
|
|
2
|
+
onClick: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
3
|
+
isDisabled?: boolean;
|
|
4
|
+
sizeVariant: 'sm' | 'base';
|
|
5
|
+
variant: 'like' | 'maybe' | 'cross';
|
|
6
|
+
}
|
|
7
|
+
declare const FeedbackButton: ({ isDisabled, sizeVariant, variant, onClick, }: FeedbackButtonProps) => JSX.Element;
|
|
8
|
+
export default FeedbackButton;
|
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
interface FileUploadProps {
|
|
3
3
|
labelText?: string;
|
|
4
4
|
helperText?: string;
|
|
5
|
-
width?: "xs" | "
|
|
5
|
+
width?: "xs" | "sm" | "m" | "lg" | "xl";
|
|
6
6
|
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
7
7
|
accept?: string;
|
|
8
8
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface FilterAddRemoveBadgeProps {
|
|
3
|
+
text: string;
|
|
4
|
+
onRemoveClick: () => void;
|
|
5
|
+
onAddClick: () => void;
|
|
6
|
+
isRemoveSelected?: boolean;
|
|
7
|
+
isAddSelected?: boolean;
|
|
8
|
+
}
|
|
9
|
+
declare const FilterAddRemoveBadge: React.FC<FilterAddRemoveBadgeProps>;
|
|
10
|
+
export default FilterAddRemoveBadge;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { HomeScreenTabsTypes } from '../../../types';
|
|
3
|
+
interface HomeScreenTabsProps {
|
|
4
|
+
tabs: {
|
|
5
|
+
tabName: HomeScreenTabsTypes;
|
|
6
|
+
}[];
|
|
7
|
+
activeHomeScreenTab: HomeScreenTabsTypes;
|
|
8
|
+
onClick: (tabName: HomeScreenTabsTypes) => void;
|
|
9
|
+
}
|
|
10
|
+
declare const HomeScreenTabsComponent: React.FC<HomeScreenTabsProps>;
|
|
11
|
+
export default HomeScreenTabsComponent;
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
interface InputFieldProps {
|
|
2
|
+
value: string;
|
|
3
|
+
type: string;
|
|
2
4
|
placeholder?: string;
|
|
3
5
|
disabled?: boolean;
|
|
4
6
|
style?: object;
|
|
5
7
|
errorState: boolean;
|
|
6
8
|
props?: object;
|
|
9
|
+
onChangeHandler: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
7
10
|
}
|
|
8
|
-
declare const InputField: ({ placeholder, style, disabled, errorState, props }: InputFieldProps) => JSX.Element;
|
|
11
|
+
declare const InputField: ({ value, type, placeholder, style, disabled, errorState, props, onChangeHandler, }: InputFieldProps) => JSX.Element;
|
|
9
12
|
export default InputField;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { LogoSize, LogoType } from '../../types';
|
|
2
|
+
interface LogoButtonProps {
|
|
3
|
+
logoType: LogoType;
|
|
4
|
+
logoSize?: LogoSize;
|
|
5
|
+
onClick: () => void;
|
|
6
|
+
}
|
|
7
|
+
declare const LogoButton: ({ logoType, logoSize, onClick }: LogoButtonProps) => JSX.Element;
|
|
8
|
+
export default LogoButton;
|
|
@@ -6,7 +6,7 @@ type ModalProps = {
|
|
|
6
6
|
buttonVariant: 'oneButton' | 'twoButton' | 'noButton';
|
|
7
7
|
onBackButtonClick?: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
8
8
|
onCrossButtonClick: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
9
|
-
footerButtons
|
|
9
|
+
footerButtons: {
|
|
10
10
|
text: string;
|
|
11
11
|
onClick: () => void;
|
|
12
12
|
}[];
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
interface OTPComponentProps {
|
|
2
|
+
length?: number;
|
|
3
|
+
error?: boolean;
|
|
4
|
+
isDisable?: boolean;
|
|
5
|
+
onOTPChange?: (otp: string) => void;
|
|
6
|
+
onOTPComplete?: (otp: string) => void;
|
|
7
|
+
}
|
|
8
|
+
declare const OTPComponent: ({ length, isDisable, error, onOTPChange, onOTPComplete, }: OTPComponentProps) => JSX.Element;
|
|
9
|
+
export default OTPComponent;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { PersonViewSummaryPayloadTypes, PersonViewTabsTypes } from '../../../types';
|
|
3
|
+
interface PersonViewBodyProps {
|
|
4
|
+
personViewActiveTab: PersonViewTabsTypes;
|
|
5
|
+
personViewSummaryPayload: PersonViewSummaryPayloadTypes;
|
|
6
|
+
}
|
|
7
|
+
declare const PersonViewBody: React.FC<PersonViewBodyProps>;
|
|
8
|
+
export default PersonViewBody;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { PersonExperienceDetailsTypes } from '../../../types';
|
|
3
|
+
interface PersonViewExperienceCardProps {
|
|
4
|
+
companyLogo: string;
|
|
5
|
+
start: string;
|
|
6
|
+
end: string;
|
|
7
|
+
duration: string;
|
|
8
|
+
experienceDetails: PersonExperienceDetailsTypes[];
|
|
9
|
+
}
|
|
10
|
+
declare const PersonViewExperienceCard: React.FC<PersonViewExperienceCardProps>;
|
|
11
|
+
export default PersonViewExperienceCard;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { PersonExperienceDetailsTypes } from '../../../types';
|
|
3
|
+
interface PersonViewExperienceDetailsProps {
|
|
4
|
+
experienceDetails: PersonExperienceDetailsTypes;
|
|
5
|
+
}
|
|
6
|
+
declare const PersonViewExperienceDetails: React.FC<PersonViewExperienceDetailsProps>;
|
|
7
|
+
export default PersonViewExperienceDetails;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface PersonViewHeaderProps {
|
|
3
|
+
profilePicture: string;
|
|
4
|
+
fullName: string;
|
|
5
|
+
currentRole: string;
|
|
6
|
+
currentCompany: string;
|
|
7
|
+
location: string;
|
|
8
|
+
}
|
|
9
|
+
declare const PersonViewHeader: React.FC<PersonViewHeaderProps>;
|
|
10
|
+
export default PersonViewHeader;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { PersonExperiencePayloadTypes } from '../../../types';
|
|
3
|
+
interface PersonViewSummaryProps {
|
|
4
|
+
about: string;
|
|
5
|
+
experience: PersonExperiencePayloadTypes[];
|
|
6
|
+
}
|
|
7
|
+
declare const PersonViewSummary: React.FC<PersonViewSummaryProps>;
|
|
8
|
+
export default PersonViewSummary;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { PersonViewTabsTypes } from '../../../types';
|
|
3
|
+
interface PersonViewTabsComponentProps {
|
|
4
|
+
tabs: {
|
|
5
|
+
tabName: PersonViewTabsTypes;
|
|
6
|
+
}[];
|
|
7
|
+
activePersonViewTab: PersonViewTabsTypes;
|
|
8
|
+
onClick: (tabName: PersonViewTabsTypes) => void;
|
|
9
|
+
}
|
|
10
|
+
declare const PersonViewTabsComponent: React.FC<PersonViewTabsComponentProps>;
|
|
11
|
+
export default PersonViewTabsComponent;
|
|
@@ -4,6 +4,7 @@ interface RecentChatComponentProps {
|
|
|
4
4
|
isSelected?: boolean;
|
|
5
5
|
onEdit: () => void;
|
|
6
6
|
onDelete: () => void;
|
|
7
|
+
onClick: () => void;
|
|
7
8
|
}
|
|
8
|
-
declare const RecentChatComponent: ({ text, textLength, isSelected, onEdit, onDelete }: RecentChatComponentProps) => JSX.Element;
|
|
9
|
+
declare const RecentChatComponent: ({ text, textLength, isSelected, onEdit, onDelete, onClick }: RecentChatComponentProps) => JSX.Element;
|
|
9
10
|
export default RecentChatComponent;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { SearchSelectedLocationTypes } from '../../types';
|
|
3
|
+
interface SearchLocationDropdownProps {
|
|
4
|
+
selectedLocation: SearchSelectedLocationTypes;
|
|
5
|
+
setSelectedLocation: (location: SearchSelectedLocationTypes) => void;
|
|
6
|
+
}
|
|
7
|
+
declare const SearchLocationDropdown: React.FC<SearchLocationDropdownProps>;
|
|
8
|
+
export default SearchLocationDropdown;
|
|
@@ -1,3 +1,10 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
2
|
+
import { SearchPersonTableType } from '../../types';
|
|
3
|
+
interface SearchPersonTableProps {
|
|
4
|
+
onCheckClick: () => void;
|
|
5
|
+
onNameClick: () => void;
|
|
6
|
+
onCompanyClick: () => void;
|
|
7
|
+
personsData: SearchPersonTableType[];
|
|
8
|
+
}
|
|
9
|
+
declare const SearchPersonTable: React.FC<SearchPersonTableProps>;
|
|
3
10
|
export default SearchPersonTable;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface TablePaginationProps {
|
|
3
|
+
totalCount: number;
|
|
4
|
+
lowerCap: number;
|
|
5
|
+
upperCap: number;
|
|
6
|
+
onPrevClick: () => void;
|
|
7
|
+
onNextClick: () => void;
|
|
8
|
+
onPageNumberClick: (pageNumber: number) => void;
|
|
9
|
+
pageButtons: number[];
|
|
10
|
+
}
|
|
11
|
+
declare const TablePagination: React.FC<TablePaginationProps>;
|
|
12
|
+
export default TablePagination;
|
|
@@ -4,7 +4,7 @@ interface TextButtonProps {
|
|
|
4
4
|
text: string;
|
|
5
5
|
className?: string;
|
|
6
6
|
sizeVariant?: 'xs' | 'sm' | 'base' | 'l' | 'xl';
|
|
7
|
-
colorVariant: 'primaryOrange' | 'primaryOrangeBorder' | 'alternativeDarkBorder';
|
|
7
|
+
colorVariant: 'primaryOrange' | 'primaryOrangeBorder' | 'alternativeDarkBorder' | 'primaryOrangeBorderAndText';
|
|
8
8
|
}
|
|
9
9
|
declare const TextButton: ({ onClick, isDisabled, text, sizeVariant, colorVariant, }: TextButtonProps) => JSX.Element;
|
|
10
10
|
export default TextButton;
|
|
@@ -1,34 +1,65 @@
|
|
|
1
1
|
export { default as AddAdditionalIdealProfileCard } from './AddAdditionalIdealProfileCard';
|
|
2
2
|
export { default as AndOrButtonGroup } from './AndOrButtonGroup';
|
|
3
|
+
export { default as AuthNavBar } from './AuthNavBar';
|
|
4
|
+
export { default as AuthNavbarLogoSvg } from './AuthNavbarLogoSvg/AuthNavbarLogoSvg';
|
|
5
|
+
export { default as AuthPhoneNumberInput } from './AuthPhoneNumberInput';
|
|
3
6
|
export { default as AvatarGroup } from './AvatarGroup';
|
|
4
7
|
export { default as BadgeClickable } from './BadgeClickable';
|
|
8
|
+
export { default as BadgeNonClickable } from './BadgeNonClickable';
|
|
5
9
|
export { default as ChatCard } from './ChatCard';
|
|
6
|
-
export { default as ChatClickableCard } from './ChatClickableCard
|
|
7
|
-
export { default as ChatDropDown } from './ChatDropDown
|
|
8
|
-
export { default as ChatPeopleCard } from './ChatPeopleCard
|
|
9
|
-
export { default as ChatPopup } from './ChatPopup
|
|
10
|
-
export { default as ChatSearchBar } from './ChatSearchBar
|
|
10
|
+
export { default as ChatClickableCard } from './ChatClickableCard';
|
|
11
|
+
export { default as ChatDropDown } from './ChatDropDown';
|
|
12
|
+
export { default as ChatPeopleCard } from './ChatPeopleCard';
|
|
13
|
+
export { default as ChatPopup } from './ChatPopup';
|
|
14
|
+
export { default as ChatSearchBar } from './ChatSearchBar';
|
|
11
15
|
export { default as CheckboxComponent } from './CheckboxComponent';
|
|
12
16
|
export { default as CircularIcon } from './CircularIcon';
|
|
17
|
+
export { default as CircularSvgAndEmoji } from './CircularSvgAndEmoji';
|
|
13
18
|
export { default as CircularSvgButton } from './CircularSvgButton';
|
|
14
19
|
export { default as ClickableText } from './ClickableText';
|
|
15
20
|
export { default as CompanyLikePillSelectable } from './CompanyLikePillSelectable';
|
|
16
|
-
export { default as
|
|
21
|
+
export { default as CompanyPillNotClickable } from './CompanyPillNotClicakble';
|
|
22
|
+
export { default as CompanyViewBody } from './CompanyView/CompanyViewBody';
|
|
23
|
+
export { default as CompanyViewEmployeeCard } from './CompanyView/CompanyViewEmployeeCard';
|
|
24
|
+
export { default as CompanyViewHeader } from './CompanyView/CompanyViewHeader';
|
|
25
|
+
export { default as CompanyViewLayout } from './CompanyView/CompanyViewLayout';
|
|
26
|
+
export { default as CompanyViewPeople } from './CompanyView/CompanyViewPeople';
|
|
27
|
+
export { default as CompanyViewSummary } from './CompanyView/CompanyViewSummary';
|
|
28
|
+
export { default as CompanyViewTabsComponent } from './CompanyView/CompanyViewTabsComponent';
|
|
17
29
|
export { default as CountCancelButton } from './CountCancelButton';
|
|
30
|
+
export { default as DropdownComponent } from './DropdownComponent';
|
|
18
31
|
export { default as DeleteSvgButton } from './DeleteSvgButton/DeleteSvgButton';
|
|
19
32
|
export { default as EditSvgButton } from './EditSvgButton/EditSvgButton';
|
|
33
|
+
export { default as FeedbackButton } from './FeedbackButton';
|
|
34
|
+
export { default as FilterAddRemoveBadge } from './FilterAddRemoveBadge';
|
|
20
35
|
export { default as FileUpload } from './FileUpload';
|
|
21
36
|
export { default as GetSvgIcon } from './GetSvgIcon';
|
|
22
37
|
export { default as HiringCompanyConciseCard } from './HiringCompanyConciseCard';
|
|
38
|
+
export { default as HomeScreenBody } from './HomeScreen/HomeScreenBody';
|
|
39
|
+
export { default as HomeScreenLayout } from './HomeScreen/HomeScreenLayout';
|
|
40
|
+
export { default as HomeScreenOverview } from './HomeScreen/HomeScreenOverview';
|
|
41
|
+
export { default as HomeScreenStatCard } from './HomeScreen/HomeScreenStatCard';
|
|
42
|
+
export { default as HomeScreenTabsComponent } from './HomeScreen/HomeScreenTabsComponent';
|
|
23
43
|
export { default as IdealProfileConciseCard } from './IdealProfileConciseCard';
|
|
24
44
|
export { default as IdealProfileSelectionCard } from './IdealProfileSelectionCard';
|
|
25
45
|
export { default as InputField } from './InputField';
|
|
26
46
|
export { default as InputFieldWithSvg } from './InputFieldWithSvg';
|
|
47
|
+
export { default as LogoButton } from './LogoButton';
|
|
27
48
|
export { default as Modal } from './Modal';
|
|
28
49
|
export { default as NumberInputField } from './NumberInputField';
|
|
50
|
+
export { default as OTPComponent } from './OTP';
|
|
51
|
+
export { default as PersonCompanyNameClickable } from './PersonCompanyNameClickable';
|
|
52
|
+
export { default as PersonViewBody } from './PersonView/PersonViewBody';
|
|
53
|
+
export { default as PersonViewExperienceCard } from './PersonView/PersonViewExperienceCard';
|
|
54
|
+
export { default as PersonViewExperienceDetails } from './PersonView/PersonViewExperienceDetails';
|
|
55
|
+
export { default as PersonViewHeader } from './PersonView/PersonViewHeader';
|
|
56
|
+
export { default as PersonViewLayout } from './PersonView/PersonViewLayout';
|
|
57
|
+
export { default as PersonViewSummary } from './PersonView/PersonViewSummary';
|
|
58
|
+
export { default as PersonViewTabsComponent } from './PersonView/PersonViewTabsComponent';
|
|
29
59
|
export { default as PrimaryButton } from './PrimaryButton';
|
|
60
|
+
export { default as ProgressBar } from './ProgressBar';
|
|
30
61
|
export { default as RangeComponent } from './RangeComponent';
|
|
31
|
-
export { default as RecentChatComponent } from './RecentChatComponent
|
|
62
|
+
export { default as RecentChatComponent } from './RecentChatComponent';
|
|
32
63
|
export { default as RecentChatLabel } from './RecentChatLabel';
|
|
33
64
|
export { default as RectangularIcon } from './RectangularIcon';
|
|
34
65
|
export { default as RectangularSvgButton } from './RectangularSvgButton';
|
|
@@ -36,13 +67,17 @@ export { default as SearchArrowButton } from './SearchArrowButton/SearchSvgButto
|
|
|
36
67
|
export { default as SearchFilterButton } from './SearchFilterButton';
|
|
37
68
|
export { default as CompanySearchFiltersSideDrawer } from './SearchFilterSideDrawer/CompanySearchFiltersSideDrawer';
|
|
38
69
|
export { default as PeopleSearchFiltersSideDrawer } from './SearchFilterSideDrawer/PeopleSearchFiltersSideDrawer';
|
|
70
|
+
export { default as SearchLocationDropdown } from './SearchLocationDropdown';
|
|
39
71
|
export { default as SearchPersonTable } from './SearchPersonTable';
|
|
72
|
+
export { default as SearchPersonTableContainer } from './SearchPersonTableContainer';
|
|
40
73
|
export { default as SearchTabsBar } from './SearchTabsBar';
|
|
41
74
|
export { default as SecondaryButton } from './SecondaryButton';
|
|
42
75
|
export { default as SidebarChatbot } from './SidebarChatbot';
|
|
76
|
+
export { default as SkillIndustryBadge } from './SkillIndustryBadge';
|
|
43
77
|
export { default as StepperNavigation } from './StepperNavigation';
|
|
44
78
|
export { default as SwitchLarge } from './SwitchLarge';
|
|
45
79
|
export { default as Table } from './Table';
|
|
80
|
+
export { default as TablePagination } from './TablePagination';
|
|
46
81
|
export { default as Tabs } from './Tabs';
|
|
47
82
|
export { default as TertiaryButton } from './TertiaryButton';
|
|
48
83
|
export { default as TextButton } from './TextButton';
|