qlu-20-ui-library 1.1.49 → 1.1.51

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;
@@ -4,7 +4,8 @@ interface AssignmentCreationProps {
4
4
  assigneeMail: string;
5
5
  containerClassName?: string;
6
6
  iconType: 'plus' | 'cross';
7
+ isLoading: boolean;
7
8
  onClick: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
8
9
  }
9
- declare const AssignmentCreation: ({ assigneeName, assigneeMail, iconType, onClick, }: AssignmentCreationProps) => JSX.Element;
10
+ declare const AssignmentCreation: ({ assigneeName, assigneeMail, iconType, isLoading, onClick, }: AssignmentCreationProps) => JSX.Element;
10
11
  export default AssignmentCreation;
@@ -7,5 +7,5 @@ interface BadgeNonClickableListProps {
7
7
  badge?: boolean;
8
8
  missing?: number;
9
9
  }
10
- declare const BadgeNonClickableList: ({ initialItemsToShow, matchingList, text, badge, missing }: BadgeNonClickableListProps) => JSX.Element;
10
+ declare const BadgeNonClickableList: ({ initialItemsToShow, matchingList, text, badge, missing, }: BadgeNonClickableListProps) => JSX.Element;
11
11
  export default BadgeNonClickableList;
@@ -5,6 +5,7 @@ interface InputFieldWithSvgProps {
5
5
  iconType?: IconType;
6
6
  iconSize?: IconSize;
7
7
  showIconOnLeft?: boolean;
8
+ onChange: (value: string) => void;
8
9
  }
9
- declare const InputFieldWithSvg: ({ placeholder, iconType, iconSize, showIconOnLeft, }: InputFieldWithSvgProps) => JSX.Element;
10
+ declare const InputFieldWithSvg: ({ placeholder, iconType, iconSize, showIconOnLeft, onChange, }: InputFieldWithSvgProps) => JSX.Element;
10
11
  export default InputFieldWithSvg;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const TextStyles: ({ editorState, updateEditorState }: any) => JSX.Element;
3
+ export default TextStyles;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const ToolbarItem: ({ editorState, updateEditorState, pasteHandler, value, contributors }: any) => JSX.Element;
3
+ export default ToolbarItem;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ interface Props {
3
+ value: string;
4
+ handleChange: (newTextValue: string) => void;
5
+ contributors?: string[];
6
+ }
7
+ declare const NoteEditor: ({ value, handleChange, contributors }: Props) => JSX.Element;
8
+ export default NoteEditor;
@@ -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;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ interface BoltProps {
3
+ className?: string;
4
+ width?: string;
5
+ height?: string;
6
+ }
7
+ declare const Bolt: ({ className, width, height }: BoltProps) => JSX.Element;
8
+ export default Bolt;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ interface ImagesProps {
3
+ className?: string;
4
+ width?: string;
5
+ height?: string;
6
+ }
7
+ declare const Images: ({ className, width, height }: ImagesProps) => JSX.Element;
8
+ export default Images;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ interface InformationProps {
3
+ className?: string;
4
+ width?: string;
5
+ height?: string;
6
+ }
7
+ declare const Information: ({ className, width, height }: InformationProps) => JSX.Element;
8
+ export default Information;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ interface InviteUserProps {
3
+ className?: string;
4
+ width?: string;
5
+ height?: string;
6
+ }
7
+ declare const InviteUser: ({ className, width, height }: InviteUserProps) => JSX.Element;
8
+ export default InviteUser;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ interface ListProps {
3
+ className?: string;
4
+ width?: string;
5
+ height?: string;
6
+ }
7
+ declare const List: ({ className, width, height }: ListProps) => JSX.Element;
8
+ export default List;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ interface TableProps {
3
+ className?: string;
4
+ width?: string;
5
+ height?: string;
6
+ }
7
+ declare const Table: ({ className, width, height }: TableProps) => JSX.Element;
8
+ export default Table;
@@ -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;
@@ -5,5 +5,5 @@ type TruncateTextProps = {
5
5
  toolTipClassName?: string;
6
6
  toolTipPosition?: 'top' | 'bottom' | 'left' | 'right';
7
7
  };
8
- declare const TruncateText: ({ text, length, toolTipClassName, toolTipPosition }: TruncateTextProps) => JSX.Element;
8
+ declare const TruncateText: ({ text, length, toolTipClassName, toolTipPosition, }: TruncateTextProps) => JSX.Element;
9
9
  export default TruncateText;
@@ -110,3 +110,4 @@ export { default as SavedSearches } from './SearchFilterSideDrawer/SaveSearch';
110
110
  export { default as ConnectDropdown } from './ConnectDropdown';
111
111
  export { default as PeopleCard } from './PeopleCard';
112
112
  export { default as CompanyPill } from './CompanyPill';
113
+ export { default as NoteEditor } from './NoteEditor';