qlu-20-ui-library 1.1.4 → 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/Table/index.d.ts +7 -0
- package/dist/components/TablePagination/index.d.ts +12 -0
- package/dist/components/Tabs/index.d.ts +11 -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 +45 -8
- package/dist/index.css +1 -1
- package/dist/library.es.js +13979 -6727
- package/dist/library.umd.js +150 -18
- package/dist/types.d.ts +54 -1
- package/dist/utils.d.ts +45 -1
- package/package.json +2 -1
- package/dist/components/CompanyLogoPillSelectable/index.d.ts +0 -12
- /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;
|