qlu-20-ui-library 1.1.86 → 1.1.87

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.
@@ -7,6 +7,7 @@ interface AdvanceFilterJobTitleV2Props {
7
7
  getRange: (value: RangeObject) => void;
8
8
  applyToAllOnClick: (value: RangeObject) => void;
9
9
  truncateTitleLength?: number;
10
+ showApplyToAll?: boolean;
10
11
  }
11
- declare const AdvanceFilterJobTitleV2: ({ setMaxValue, setMinValue, searchForPillText, crossOnClick, applyToAllOnClick, getRange, }: AdvanceFilterJobTitleV2Props) => import("react/jsx-runtime").JSX.Element;
12
+ declare const AdvanceFilterJobTitleV2: ({ setMaxValue, setMinValue, searchForPillText, crossOnClick, applyToAllOnClick, getRange, showApplyToAll, }: AdvanceFilterJobTitleV2Props) => import("react/jsx-runtime").JSX.Element;
12
13
  export default AdvanceFilterJobTitleV2;
@@ -1,8 +1,9 @@
1
- import { IconSize, IconType, BadgeTypes } from '../../types';
2
- import { FC } from 'react';
1
+ import { IconSize, IconType, BadgeTypes } from "../../types";
2
+ import { FC } from "react";
3
3
  interface BadgeNonClickableProps {
4
4
  showIconOnLeft?: boolean;
5
5
  showIcon?: boolean;
6
+ isTransparent?: boolean;
6
7
  iconType?: IconType;
7
8
  iconSize?: IconSize;
8
9
  text: string;
@@ -1,4 +1,4 @@
1
- import { Header } from '..';
1
+ import { Header } from "..";
2
2
  interface IRevenueTableProp {
3
3
  revenueHeader: Header[];
4
4
  revenueData: any;
@@ -1,4 +1,4 @@
1
- import { IconType } from '../../types';
1
+ import { IconType } from "../../types";
2
2
  interface FilterAndSortDropdownProps {
3
3
  iconType: IconType;
4
4
  usageTypeText: string;
@@ -2,7 +2,8 @@ interface NumberInputFieldProps {
2
2
  initialNumber?: number;
3
3
  props?: object;
4
4
  placeholder?: string;
5
+ minCap?: number;
5
6
  handleChange?: (value: number) => void;
6
7
  }
7
- declare const NumberInputField: ({ initialNumber, props, placeholder, handleChange, }: NumberInputFieldProps) => import("react/jsx-runtime").JSX.Element;
8
+ declare const NumberInputField: ({ initialNumber, props, placeholder, minCap, handleChange, }: NumberInputFieldProps) => import("react/jsx-runtime").JSX.Element;
8
9
  export default NumberInputField;
@@ -1,3 +1,3 @@
1
- import { PayChartProps } from '../../types';
1
+ import { PayChartProps } from "../../types";
2
2
  declare const PayChart: ({ inputLabels, inputValues }: PayChartProps) => import("react/jsx-runtime").JSX.Element;
3
3
  export default PayChart;
@@ -7,9 +7,12 @@ interface PersonViewHeaderProps {
7
7
  universalName: string;
8
8
  urn: string;
9
9
  location: string;
10
+ lastUpdated?: string;
10
11
  showCheckBox?: boolean;
11
12
  onCheckClick?: (flag: boolean) => void;
12
13
  onClose: () => void;
14
+ onUpdateClick?: () => void;
15
+ isThreeMonthsAgo?: boolean;
13
16
  onCompanyNameClick: (universalName: string, urn: string) => void;
14
17
  }
15
18
  declare const PersonViewHeader: React.FC<PersonViewHeaderProps>;
@@ -1,4 +1,4 @@
1
- import React from 'react';
1
+ import React from "react";
2
2
  export interface RangeObject {
3
3
  minRange: number;
4
4
  maxRange: number;
@@ -5,5 +5,5 @@ interface SaveSearchProps {
5
5
  onTitleClick: (title: Title) => void;
6
6
  onDeleteClick: (title: Title) => void;
7
7
  }
8
- declare const SavedSearches: ({ titles, isLoading, onTitleClick, onDeleteClick }: SaveSearchProps) => import("react/jsx-runtime").JSX.Element;
8
+ declare const SavedSearches: ({ titles, isLoading, onTitleClick, onDeleteClick, }: SaveSearchProps) => import("react/jsx-runtime").JSX.Element;
9
9
  export default SavedSearches;
@@ -3,5 +3,5 @@ interface DownloadProps {
3
3
  height?: string;
4
4
  className?: string;
5
5
  }
6
- declare const Download: ({ width, height, className }: DownloadProps) => import("react/jsx-runtime").JSX.Element;
6
+ declare const Download: ({ width, height, className, }: DownloadProps) => import("react/jsx-runtime").JSX.Element;
7
7
  export default Download;
@@ -2,5 +2,5 @@ interface FilterFunelProps {
2
2
  width?: string;
3
3
  height?: string;
4
4
  }
5
- declare const FilterFunel: ({ width, height, }: FilterFunelProps) => import("react/jsx-runtime").JSX.Element;
5
+ declare const FilterFunel: ({ width, height }: FilterFunelProps) => import("react/jsx-runtime").JSX.Element;
6
6
  export default FilterFunel;
@@ -1,10 +1,10 @@
1
1
  /// <reference types="react" />
2
- import { IconType } from '../../types';
2
+ import { IconType } from "../../types";
3
3
  interface TextWithSvgButtonProps {
4
4
  text: string;
5
5
  TextWithSvgButtonClassName?: string;
6
- sizeVariant?: 'xs' | 'sm' | 'base';
7
- colorVariant: 'black' | 'gray' | 'primary' | 'red';
6
+ sizeVariant?: "xs" | "sm" | "base";
7
+ colorVariant: "black" | "gray" | "primary" | "red";
8
8
  isDisabled?: boolean;
9
9
  iconType?: IconType;
10
10
  onClick: (event: React.MouseEvent<HTMLButtonElement>) => void;