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.
@@ -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,6 +1,9 @@
1
1
  export interface Option {
2
2
  label: string;
3
3
  iconUrl?: string;
4
+ universalName?: string;
5
+ publicIdentifier?: string;
6
+ url?: string;
4
7
  }
5
8
  interface ChatDropDownProps {
6
9
  filteredOptions: Option[];
@@ -1,11 +1,8 @@
1
- import { IconType } from "../../types";
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: FilterAndSortDropdownItems[];
5
+ filterDropdownItemList: string[];
9
6
  onLabelClick: () => void;
10
7
  }
11
8
  declare const FilterAndSortDropdown: ({ iconType, usageTypeText, filterDropdownItemList, onLabelClick, }: FilterAndSortDropdownProps) => JSX.Element;
@@ -4,8 +4,6 @@ export interface RangeObject {
4
4
  maxRange: number;
5
5
  }
6
6
  interface RangeComponentProps {
7
- minValue: number;
8
- maxValue: number;
9
7
  getRange: (value: RangeObject) => void;
10
8
  }
11
9
  declare const RangeComponent: React.FC<RangeComponentProps>;
@@ -0,0 +1,7 @@
1
+ interface SidebarProps {
2
+ isOpen: boolean;
3
+ onClose: () => void;
4
+ children: any;
5
+ }
6
+ declare const Sidebar: ({ isOpen, onClose, children }: SidebarProps) => JSX.Element;
7
+ export default Sidebar;
@@ -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';