qlu-20-ui-library 1.1.13 → 1.1.15
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/AssignmentBreadCrumb/index.d.ts +2 -2
- package/dist/components/ChatDropDown/index.d.ts +3 -0
- package/dist/components/FilterAndSortDropdown/index.d.ts +2 -5
- package/dist/components/RangeComponent/index.d.ts +0 -2
- package/dist/components/Sidebar/index.d.ts +7 -0
- package/dist/components/index.d.ts +2 -1
- package/dist/index.css +1 -1
- package/dist/library.es.js +474 -468
- package/dist/library.umd.js +35 -16
- package/dist/utils.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
interface item {
|
|
2
2
|
label: string;
|
|
3
3
|
count: number;
|
|
4
|
-
handleClick: () => void;
|
|
5
4
|
}
|
|
6
5
|
interface AssignmentBreadCrumbProps {
|
|
7
6
|
breadCrumbItems: item[];
|
|
8
7
|
archivedCount: number;
|
|
8
|
+
handleClick: () => void;
|
|
9
9
|
handleArchiveClick: () => void;
|
|
10
10
|
}
|
|
11
|
-
declare const AssignmentBreadCrumb: ({ breadCrumbItems, archivedCount, handleArchiveClick, }: AssignmentBreadCrumbProps) => JSX.Element;
|
|
11
|
+
declare const AssignmentBreadCrumb: ({ breadCrumbItems, archivedCount, handleArchiveClick, handleClick, }: AssignmentBreadCrumbProps) => JSX.Element;
|
|
12
12
|
export default AssignmentBreadCrumb;
|
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
import { IconType } from
|
|
2
|
-
export interface FilterAndSortDropdownItems {
|
|
3
|
-
label: string;
|
|
4
|
-
}
|
|
1
|
+
import { IconType } from '../../types';
|
|
5
2
|
interface FilterAndSortDropdownProps {
|
|
6
3
|
iconType: IconType;
|
|
7
4
|
usageTypeText: string;
|
|
8
|
-
filterDropdownItemList:
|
|
5
|
+
filterDropdownItemList: string[];
|
|
9
6
|
onLabelClick: () => void;
|
|
10
7
|
}
|
|
11
8
|
declare const FilterAndSortDropdown: ({ iconType, usageTypeText, filterDropdownItemList, onLabelClick, }: FilterAndSortDropdownProps) => JSX.Element;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export { default as AddAdditionalIdealProfileCard } from './AddAdditionalIdealProfileCard';
|
|
2
2
|
export { default as ActiveFilterPill } from './ActiveFilterPills';
|
|
3
|
+
export { default as AssignmentBreadCrumb } from './AssignmentBreadCrumb';
|
|
3
4
|
export { default as AndOrButtonGroup } from './AndOrButtonGroup';
|
|
4
5
|
export { default as AuthNavBar } from './AuthNavBar';
|
|
5
6
|
export { default as AuthNavbarLogoSvg } from './AuthNavbarLogoSvg/AuthNavbarLogoSvg';
|
|
6
7
|
export { default as AuthPhoneNumberInput } from './AuthPhoneNumberInput';
|
|
7
8
|
export { default as AssignmentCreation } from './AssignmentCreationCard';
|
|
8
9
|
export { default as AssignmentInfoSubHeader } from './AssignmentInfoSubHeader';
|
|
9
|
-
export { default as AssignmentBreadCrumb } from './AssignmentBreadCrumb';
|
|
10
10
|
export { default as AssignmentIdealProfileCard } from './AssignmentIdealProfileSelectionCard';
|
|
11
11
|
export { default as AvatarGroup } from './AvatarGroup';
|
|
12
12
|
export { default as AvatarDropdown } from './AvatarDropdown';
|
|
@@ -84,6 +84,7 @@ export { default as SearchPersonTableContainer } from './SearchPersonTableContai
|
|
|
84
84
|
export { default as SearchCompanyTableContainer } from './SearchCompanyTableContainer';
|
|
85
85
|
export { default as SearchTabsBar } from './SearchTabsBar';
|
|
86
86
|
export { default as SecondaryButton } from './SecondaryButton';
|
|
87
|
+
export { default as Sidebar } from './Sidebar';
|
|
87
88
|
export { default as SidebarChatbot } from './SidebarChatbot';
|
|
88
89
|
export { default as SkillIndustryBadge } from './SkillIndustryBadge';
|
|
89
90
|
export { default as StepperNavigation } from './StepperNavigation';
|