qlu-20-ui-library 1.1.8 → 1.1.10

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.
Files changed (30) hide show
  1. package/dist/components/AssignmentCreationCard/index.d.ts +12 -0
  2. package/dist/components/AssignmentIdealProfileSelectionCard/BageNonClickableList/index.d.ts +7 -0
  3. package/dist/components/AssignmentIdealProfileSelectionCard/DynamicEducationCard/index.d.ts +14 -0
  4. package/dist/components/AssignmentIdealProfileSelectionCard/DynamicExperienceCard/index.d.ts +15 -0
  5. package/dist/components/AssignmentIdealProfileSelectionCard/NotesProspectiveList/index.d.ts +17 -0
  6. package/dist/components/AssignmentIdealProfileSelectionCard/ProfileCard/index.d.ts +11 -0
  7. package/dist/components/AssignmentIdealProfileSelectionCard/ProfileIstSection/index.d.ts +23 -0
  8. package/dist/components/AssignmentIdealProfileSelectionCard/ProfileSecondSection/index.d.ts +28 -0
  9. package/dist/components/AssignmentIdealProfileSelectionCard/index.d.ts +30 -0
  10. package/dist/components/AssignmentInfoSubHeader/index.d.ts +14 -0
  11. package/dist/components/AvatarDropdown/index.d.ts +19 -0
  12. package/dist/components/AvatarGroup/index.d.ts +11 -6
  13. package/dist/components/ButtonDropdown/index.d.ts +9 -0
  14. package/dist/components/ChatSearchBar/index.d.ts +2 -1
  15. package/dist/components/ColoredButton/index.d.ts +9 -0
  16. package/dist/components/EducationCard/index.d.ts +10 -0
  17. package/dist/components/ExperienceAndEducatioCard/index.d.ts +11 -0
  18. package/dist/components/GetSvgIcon/index.d.ts +1 -1
  19. package/dist/components/InputField/index.d.ts +2 -1
  20. package/dist/components/NotesProspectiveCard/index.d.ts +7 -0
  21. package/dist/components/Svg/Notes.d.ts +6 -0
  22. package/dist/components/Svg/OfficeBuilding.d.ts +7 -0
  23. package/dist/components/TextWithSvgButton/index.d.ts +12 -0
  24. package/dist/components/TitleFilterHeader/index.d.ts +10 -0
  25. package/dist/components/index.d.ts +9 -0
  26. package/dist/index.css +1 -1
  27. package/dist/library.es.js +7345 -6442
  28. package/dist/library.umd.js +20 -20
  29. package/dist/types.d.ts +4 -3
  30. package/package.json +1 -1
@@ -0,0 +1,12 @@
1
+ import { IconSize } from '../../types';
2
+ interface AssignmentCreationProps {
3
+ iconUrl: string;
4
+ assigneeName: string;
5
+ assigneeMail: string;
6
+ containerClassName?: string;
7
+ iconType: 'plus' | 'cross';
8
+ iconSize?: IconSize;
9
+ onClick: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
10
+ }
11
+ declare const AssignmentCreation: ({ iconUrl, assigneeName, assigneeMail, iconType, iconSize, onClick, }: AssignmentCreationProps) => JSX.Element;
12
+ export default AssignmentCreation;
@@ -0,0 +1,7 @@
1
+ interface BadgeNonClickableListProps {
2
+ initialItemsToShow: number;
3
+ missingList: string[];
4
+ matchingList: string[];
5
+ }
6
+ declare const BadgeNonClickableList: ({ initialItemsToShow, missingList, matchingList, }: BadgeNonClickableListProps) => JSX.Element;
7
+ export default BadgeNonClickableList;
@@ -0,0 +1,14 @@
1
+ interface EducationCardProps {
2
+ iconUrl: string;
3
+ iconAltText?: string;
4
+ institue: string;
5
+ degree: string;
6
+ from: string;
7
+ to: string;
8
+ }
9
+ interface DynamicEducationCardProps {
10
+ educations: EducationCardProps[];
11
+ initialItemsToShow: number;
12
+ }
13
+ declare const DynamicEducationCard: ({ educations, initialItemsToShow, }: DynamicEducationCardProps) => JSX.Element;
14
+ export default DynamicEducationCard;
@@ -0,0 +1,15 @@
1
+ interface ExperienceCardProps {
2
+ iconUrl: string;
3
+ iconAltText?: string;
4
+ position: string;
5
+ company: string;
6
+ from: string;
7
+ to: string;
8
+ separator: string;
9
+ }
10
+ interface DynamicExperienceCardProps {
11
+ experiences: ExperienceCardProps[];
12
+ initialItemsToShow: number;
13
+ }
14
+ declare const DynamicExperienceCardList: ({ experiences, initialItemsToShow, }: DynamicExperienceCardProps) => JSX.Element;
15
+ export default DynamicExperienceCardList;
@@ -0,0 +1,17 @@
1
+ import { IconType } from '../../../types';
2
+ interface NoteProspectiveCardProps {
3
+ iconUrl: string;
4
+ text: string;
5
+ }
6
+ interface NoteProspectiveCardListProps {
7
+ notesList: NoteProspectiveCardProps[];
8
+ initialItemsToShow: number;
9
+ feedbackText?: string;
10
+ feedbackIcon: IconType;
11
+ feedbackLikeClick: () => void;
12
+ feedbackMaybeClick: () => void;
13
+ feedbackCrossClick: () => void;
14
+ onNotesViewAllClick: () => void;
15
+ }
16
+ declare const NoteProspectiveCardList: ({ notesList, initialItemsToShow, feedbackText, feedbackIcon, feedbackLikeClick, feedbackMaybeClick, feedbackCrossClick, onNotesViewAllClick, }: NoteProspectiveCardListProps) => JSX.Element;
17
+ export default NoteProspectiveCardList;
@@ -0,0 +1,11 @@
1
+ import { IconSize } from '../../../types';
2
+ interface ChatClickableCardProps {
3
+ iconPath: string;
4
+ iconSize: IconSize;
5
+ name: string;
6
+ designation: string;
7
+ recentCompany?: string;
8
+ location?: string;
9
+ }
10
+ declare const ProfileCard: ({ iconPath, iconSize, name, designation, recentCompany, location }: ChatClickableCardProps) => JSX.Element;
11
+ export default ProfileCard;
@@ -0,0 +1,23 @@
1
+ import { IconSize, IconType } from '../../../types';
2
+ export interface NoteProspectiveCardProps {
3
+ iconUrl: string;
4
+ text: string;
5
+ }
6
+ interface ProfileCardIstSectionProps {
7
+ profileIconPath: string;
8
+ profileIconSize: IconSize;
9
+ personName: string;
10
+ personDesignation: string;
11
+ personRecentCompany?: string;
12
+ companyLocation?: string;
13
+ notesList: NoteProspectiveCardProps[];
14
+ initialItemsToShow: number;
15
+ onNotesViewAllClick: () => void;
16
+ feedbackText?: string;
17
+ feedbackIcon: IconType;
18
+ feedbackLikeClick: () => void;
19
+ feedbackMaybeClick: () => void;
20
+ feedbackCrossClick: () => void;
21
+ }
22
+ declare const ProfileCardIstSection: ({ profileIconPath, profileIconSize, personName, personDesignation, personRecentCompany, companyLocation, notesList, initialItemsToShow, onNotesViewAllClick, feedbackText, feedbackIcon, feedbackLikeClick, feedbackMaybeClick, feedbackCrossClick, }: ProfileCardIstSectionProps) => JSX.Element;
23
+ export default ProfileCardIstSection;
@@ -0,0 +1,28 @@
1
+ export interface EducationList {
2
+ iconUrl: string;
3
+ iconAltText?: string;
4
+ institue: string;
5
+ degree: string;
6
+ from: string;
7
+ to: string;
8
+ }
9
+ export interface ExperienceList {
10
+ iconUrl: string;
11
+ iconAltText?: string;
12
+ position: string;
13
+ company: string;
14
+ from: string;
15
+ to: string;
16
+ separator: string;
17
+ }
18
+ interface ProfileCardSecondSectionProps {
19
+ initialItemsToShow: number;
20
+ skillsMissingList: string[];
21
+ skillsMatchingList: string[];
22
+ industryMissingList: string[];
23
+ industryMatchingList: string[];
24
+ experiencesList: ExperienceList[];
25
+ educationsList: EducationList[];
26
+ }
27
+ declare const ProfileCardSecondSection: ({ initialItemsToShow, skillsMissingList, skillsMatchingList, industryMissingList, industryMatchingList, experiencesList, educationsList, }: ProfileCardSecondSectionProps) => JSX.Element;
28
+ export default ProfileCardSecondSection;
@@ -0,0 +1,30 @@
1
+ import { NoteProspectiveCardProps } from './ProfileIstSection';
2
+ import { EducationList, ExperienceList } from './ProfileSecondSection';
3
+ import { IconSize, IconType } from '../../types';
4
+ export interface AssignmentIdealProfileCardProps {
5
+ onCheckboxSelected: () => void;
6
+ onViewDetailsClick: () => void;
7
+ profileIconPath: string;
8
+ profileIconSize: IconSize;
9
+ personName: string;
10
+ personDesignation: string;
11
+ personRecentCompany: string;
12
+ companyLocation: string;
13
+ notesList: NoteProspectiveCardProps[];
14
+ noteListInitialItemsToShow: number;
15
+ onNotesViewAllClick: () => void;
16
+ feedbackText: string;
17
+ feedbackIcon: IconType;
18
+ feedbackLikeClick: () => void;
19
+ feedbackMaybeClick: () => void;
20
+ feedbackCrossClick: () => void;
21
+ initialItemsToShow: number;
22
+ skillsMissingList: string[];
23
+ skillsMatchingList: string[];
24
+ industryMissingList: string[];
25
+ industryMatchingList: string[];
26
+ experiencesList: ExperienceList[];
27
+ educationsList: EducationList[];
28
+ }
29
+ declare const AssignmentIdealProfileCard: ({ profileIconPath, profileIconSize, personName, personDesignation, personRecentCompany, companyLocation, notesList, noteListInitialItemsToShow, feedbackText, feedbackIcon, feedbackLikeClick, feedbackMaybeClick, feedbackCrossClick, onCheckboxSelected, onViewDetailsClick, onNotesViewAllClick, initialItemsToShow, skillsMissingList, skillsMatchingList, industryMissingList, industryMatchingList, experiencesList, educationsList, }: AssignmentIdealProfileCardProps) => JSX.Element;
30
+ export default AssignmentIdealProfileCard;
@@ -0,0 +1,14 @@
1
+ interface AssignmentInfoSubHeaderProps {
2
+ date: string;
3
+ fullName: string;
4
+ initials: string;
5
+ initialsIconSize: '24' | '32' | '48' | '80';
6
+ initialsColor: string;
7
+ initialsBackground: string;
8
+ heading: string;
9
+ location?: string;
10
+ showNotSpecified?: boolean;
11
+ showLocation?: boolean;
12
+ }
13
+ declare const AssignmentInfoSubHeader: ({ date, fullName, initials, initialsIconSize, initialsColor, initialsBackground, heading, location, showNotSpecified, showLocation, }: AssignmentInfoSubHeaderProps) => JSX.Element;
14
+ export default AssignmentInfoSubHeader;
@@ -0,0 +1,19 @@
1
+ interface initials {
2
+ name: string;
3
+ initial: string;
4
+ initialColor: string;
5
+ color: string;
6
+ }
7
+ interface images {
8
+ name: string;
9
+ iconUrl: string;
10
+ }
11
+ interface AvatarDropdownProps {
12
+ images?: images[];
13
+ dropDownInitials?: initials[];
14
+ iconSize: "24" | "32" | "48" | "80";
15
+ counter?: number;
16
+ dropdownLiOnClick: (value: string) => void;
17
+ }
18
+ declare const AvatarDropdown: ({ images, dropDownInitials, iconSize, counter, dropdownLiOnClick, }: AvatarDropdownProps) => JSX.Element;
19
+ export default AvatarDropdown;
@@ -1,13 +1,18 @@
1
- interface letterIcons {
2
- letters: string;
3
- lettersColor: string;
1
+ interface initials {
2
+ name: string;
3
+ initial: string;
4
+ initialColor: string;
4
5
  color: string;
5
6
  }
7
+ interface images {
8
+ name: string;
9
+ iconUrl: string;
10
+ }
6
11
  interface AvatarGroupProps {
7
- images?: string[];
8
- letterIcons?: letterIcons[];
12
+ images?: images[];
13
+ initials?: initials[];
9
14
  iconSize: "24" | "32" | "48" | "80";
10
15
  counter?: number;
11
16
  }
12
- declare const AvatarGroup: ({ images, letterIcons, iconSize, counter }: AvatarGroupProps) => JSX.Element;
17
+ declare const AvatarGroup: ({ images, initials, iconSize, counter }: AvatarGroupProps) => JSX.Element;
13
18
  export default AvatarGroup;
@@ -0,0 +1,9 @@
1
+ import { IconSize } from "../../types";
2
+ interface ButtonDropdownProps {
3
+ iconSize: IconSize;
4
+ onViewAssignmentClick: () => void;
5
+ onDeleteClick: () => void;
6
+ onEditClick: () => void;
7
+ }
8
+ declare const ButtonDropdown: ({ iconSize, onViewAssignmentClick, onDeleteClick, onEditClick, }: ButtonDropdownProps) => JSX.Element;
9
+ export default ButtonDropdown;
@@ -2,6 +2,7 @@ interface ChatSearchBarProps {
2
2
  placeholderText?: string;
3
3
  isDisabled?: boolean;
4
4
  onSubmit: (message: string) => void;
5
+ value?: string;
5
6
  }
6
- declare const ChatSearchBar: ({ placeholderText, isDisabled, onSubmit }: ChatSearchBarProps) => JSX.Element;
7
+ declare const ChatSearchBar: ({ placeholderText, isDisabled, onSubmit, value }: ChatSearchBarProps) => JSX.Element;
7
8
  export default ChatSearchBar;
@@ -0,0 +1,9 @@
1
+ interface ColoredButtonProps {
2
+ text: string;
3
+ sizeVariant?: 'xs' | 'sm' | 'base' | 'xl' | 'lg';
4
+ colorVariant: 'orange' | 'green' | 'teal' | 'socialTwitter';
5
+ isDisabled?: boolean;
6
+ onClick: (event: React.MouseEvent<HTMLButtonElement>) => void;
7
+ }
8
+ declare const ColoredButton: ({ text, sizeVariant, colorVariant, isDisabled, onClick, }: ColoredButtonProps) => JSX.Element;
9
+ export default ColoredButton;
@@ -0,0 +1,10 @@
1
+ interface EducationCardProps {
2
+ iconUrl: string;
3
+ iconAltText?: string;
4
+ institue: string;
5
+ degree: string;
6
+ from: string;
7
+ to: string;
8
+ }
9
+ declare const EducationCardList: ({ iconUrl, iconAltText, institue, degree, from, to, }: EducationCardProps) => JSX.Element;
10
+ export default EducationCardList;
@@ -0,0 +1,11 @@
1
+ interface ExperienceCardProps {
2
+ iconUrl: string;
3
+ iconAltText?: string;
4
+ position: string;
5
+ company: string;
6
+ from: string;
7
+ to: string;
8
+ separator: string;
9
+ }
10
+ declare const ExperienceCard: ({ iconUrl, iconAltText, position, company, from, to, }: ExperienceCardProps) => JSX.Element;
11
+ export default ExperienceCard;
@@ -1,4 +1,4 @@
1
- import { IconSize, IconType } from '../../types';
1
+ import { IconSize, IconType } from "../../types";
2
2
  interface GetSvgIcon {
3
3
  iconType: IconType;
4
4
  iconSize?: IconSize;
@@ -5,8 +5,9 @@ interface InputFieldProps {
5
5
  disabled?: boolean;
6
6
  style?: object;
7
7
  errorState: boolean;
8
+ errorMessage: string;
8
9
  props?: object;
9
10
  onChangeHandler: (event: React.ChangeEvent<HTMLInputElement>) => void;
10
11
  }
11
- declare const InputField: ({ value, type, placeholder, style, disabled, errorState, props, onChangeHandler, }: InputFieldProps) => JSX.Element;
12
+ declare const InputField: ({ value, type, placeholder, style, disabled, errorState, props, onChangeHandler, errorMessage, }: InputFieldProps) => JSX.Element;
12
13
  export default InputField;
@@ -0,0 +1,7 @@
1
+ interface NoteProspectiveProps {
2
+ iconUrl: string;
3
+ text: string;
4
+ truncateLength: number;
5
+ }
6
+ declare const NoteProspectiveCard: ({ iconUrl, text, truncateLength, }: NoteProspectiveProps) => JSX.Element;
7
+ export default NoteProspectiveCard;
@@ -0,0 +1,6 @@
1
+ interface NotesProps {
2
+ width?: string;
3
+ height?: string;
4
+ }
5
+ declare const Notes: ({ width, height, }: NotesProps) => JSX.Element;
6
+ export default Notes;
@@ -0,0 +1,7 @@
1
+ interface OfficeBuildingProps {
2
+ className?: string;
3
+ width?: string;
4
+ height?: string;
5
+ }
6
+ declare const OfficeBuilding: ({ className, width, height, }: OfficeBuildingProps) => JSX.Element;
7
+ export default OfficeBuilding;
@@ -0,0 +1,12 @@
1
+ import { IconType } from '../../types';
2
+ interface TextWithSvgButtonProps {
3
+ text: string;
4
+ TextWithSvgButtonClassName?: string;
5
+ sizeVariant?: 'xs' | 'sm' | 'base';
6
+ colorVariant: 'black' | 'gray';
7
+ isDisabled?: boolean;
8
+ iconType?: IconType;
9
+ onClick: (event: React.MouseEvent<HTMLButtonElement>) => void;
10
+ }
11
+ declare const TextWithSvgButton: ({ text, TextWithSvgButtonClassName, sizeVariant, colorVariant, isDisabled, iconType, onClick, }: TextWithSvgButtonProps) => JSX.Element;
12
+ export default TextWithSvgButton;
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import { AssignmentIdealProfileCardProps } from '../AssignmentIdealProfileSelectionCard';
3
+ interface TitleFilterHeaderProps {
4
+ tabs: string[];
5
+ tabContent: {
6
+ [key: string]: AssignmentIdealProfileCardProps[];
7
+ };
8
+ }
9
+ declare const TitleFilterHeader: React.FC<TitleFilterHeaderProps>;
10
+ export default TitleFilterHeader;
@@ -3,9 +3,15 @@ export { default as AndOrButtonGroup } from './AndOrButtonGroup';
3
3
  export { default as AuthNavBar } from './AuthNavBar';
4
4
  export { default as AuthNavbarLogoSvg } from './AuthNavbarLogoSvg/AuthNavbarLogoSvg';
5
5
  export { default as AuthPhoneNumberInput } from './AuthPhoneNumberInput';
6
+ export { default as AssignmentCreation } from './AssignmentCreationCard';
7
+ export { default as AssignmentInfoSubHeader } from './AssignmentInfoSubHeader';
8
+ export { default as AssignmentIdealProfileCard } from './AssignmentIdealProfileSelectionCard';
6
9
  export { default as AvatarGroup } from './AvatarGroup';
10
+ export { default as AvatarDropdown } from './AvatarDropdown';
11
+ export { default as PhoneNumberInputField } from './AuthPhoneNumberInput';
7
12
  export { default as BadgeClickable } from './BadgeClickable';
8
13
  export { default as BadgeNonClickable } from './BadgeNonClickable';
14
+ export { default as ButtonDropdown } from './ButtonDropdown';
9
15
  export { default as ChatCard } from './ChatCard';
10
16
  export { default as ChatClickableCard } from './ChatClickableCard';
11
17
  export { default as ChatDropDown } from './ChatDropDown';
@@ -17,6 +23,7 @@ export { default as CircularIcon } from './CircularIcon';
17
23
  export { default as CircularSvgAndEmoji } from './CircularSvgAndEmoji';
18
24
  export { default as CircularSvgButton } from './CircularSvgButton';
19
25
  export { default as ClickableText } from './ClickableText';
26
+ export { default as ColoredButton } from './ColoredButton';
20
27
  export { default as CompanyLikePillSelectable } from './CompanyLikePillSelectable';
21
28
  export { default as CompanyPillNotClickable } from './CompanyPillNotClicakble';
22
29
  export { default as CompanyViewBody } from './CompanyView/CompanyViewBody';
@@ -82,6 +89,8 @@ export { default as Tabs } from './Tabs';
82
89
  export { default as TertiaryButton } from './TertiaryButton';
83
90
  export { default as TextButton } from './TextButton';
84
91
  export { default as TextPillNotClickable } from './TextPillNotClickable';
92
+ export { default as TextWithSvgButton } from './TextWithSvgButton';
93
+ export { default as TitleFilterHeader } from './TitleFilterHeader';
85
94
  export { default as ToggleComponent } from './ToggleComponent';
86
95
  export { default as TopNavbar } from './TopNavbar';
87
96
  export { default as TruncateText } from './TruncateText';