qlu-20-ui-library 1.1.49 → 1.1.50

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.
@@ -6,7 +6,7 @@ interface AdvanceFilterTitleWindowProps {
6
6
  searchForPillText: string;
7
7
  crossOnClick: () => void;
8
8
  getRange: (value: RangeObject) => void;
9
- applyToAllOnClick: () => void;
9
+ applyToAllOnClick: (value: RangeObject) => void;
10
10
  truncateTitleLength?: number;
11
11
  }
12
12
  declare const AdvanceFilterTitleWindow: ({ setMaxValue, setMinValue, truncateTitleLength, searchForPillText, crossOnClick, applyToAllOnClick, getRange, }: AdvanceFilterTitleWindowProps) => JSX.Element;
@@ -1,12 +1,13 @@
1
1
  /// <reference types="react" />
2
- import { Profile } from "./interface";
2
+ import { Profile } from './interface';
3
3
  interface PeopleCardProps {
4
4
  count: number;
5
5
  profile: Profile;
6
6
  checked: boolean;
7
- onCheckClick: (checked: boolean) => void;
7
+ onCheckClick: (publicIdentifier: string) => void;
8
+ onDetailsClick: (publicIdentifier: string) => void;
8
9
  missingSkill: number;
9
10
  missingIndustry: number;
10
11
  }
11
- declare const PeopleCard: ({ count, profile, checked, onCheckClick, missingSkill, missingIndustry }: PeopleCardProps) => JSX.Element;
12
+ declare const PeopleCard: ({ count, profile, checked, onCheckClick, missingSkill, missingIndustry, onDetailsClick, }: PeopleCardProps) => JSX.Element;
12
13
  export default PeopleCard;
@@ -3,7 +3,8 @@ interface TextPillNotClickableProps {
3
3
  text: string;
4
4
  hasBorder?: boolean;
5
5
  sizeVariant: 'xs' | 'sm' | 'base';
6
+ width?: string;
6
7
  truncateLength?: number;
7
8
  }
8
- declare const TextPillNotClickable: ({ text, hasBorder, sizeVariant, truncateLength, }: TextPillNotClickableProps) => JSX.Element;
9
+ declare const TextPillNotClickable: ({ text, hasBorder, sizeVariant, width, truncateLength, }: TextPillNotClickableProps) => JSX.Element;
9
10
  export default TextPillNotClickable;