qlu-20-ui-library 1.1.78 → 1.1.80
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/AdvanceFilterJobTItleWindow/index.d.ts +2 -2
- package/dist/components/CheckboxComponent/index.d.ts +2 -2
- package/dist/components/CompanyView/CompanyViewFinancialGenericTable/index.d.ts +12 -0
- package/dist/components/CompanyView/CompanyViewSummary/index.d.ts +1 -1
- package/dist/components/CompanyView/CompanyViewSummaryNewsCompoment/index.d.ts +11 -0
- package/dist/components/CompanyView/CompanyViewSummaryNewsTabs/index.d.ts +8 -0
- package/dist/components/EllipsisPillNotClickable/index.d.ts +9 -0
- package/dist/components/EllipsisText/index.d.ts +9 -0
- package/dist/components/NoteEditor/ToolbarItem.d.ts +1 -1
- package/dist/components/NoteEditor/index.d.ts +3 -1
- package/dist/components/RectangularIcon/index.d.ts +5 -2
- package/dist/components/SearchPersonTable/index.d.ts +2 -2
- package/dist/components/Svg/News.d.ts +6 -0
- package/dist/components/TablePagination/index.d.ts +1 -1
- package/dist/components/TextPillNotClickable/index.d.ts +1 -1
- package/dist/components/TruncateText/index.d.ts +1 -1
- package/dist/components/index.d.ts +5 -1
- package/dist/index.css +1 -1
- package/dist/library.es.js +33794 -36077
- package/dist/library.umd.js +178 -177
- package/dist/types.d.ts +22 -21
- package/dist/utils.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RangeObject } from
|
|
1
|
+
import { RangeObject } from "../RangeComponent";
|
|
2
2
|
interface AdvanceFilterTitleWindowProps {
|
|
3
3
|
setMinValue: number;
|
|
4
4
|
setMaxValue: number;
|
|
@@ -8,5 +8,5 @@ interface AdvanceFilterTitleWindowProps {
|
|
|
8
8
|
applyToAllOnClick: (value: RangeObject) => void;
|
|
9
9
|
truncateTitleLength?: number;
|
|
10
10
|
}
|
|
11
|
-
declare const AdvanceFilterTitleWindow: ({ setMaxValue, setMinValue,
|
|
11
|
+
declare const AdvanceFilterTitleWindow: ({ setMaxValue, setMinValue, searchForPillText, crossOnClick, applyToAllOnClick, getRange, }: AdvanceFilterTitleWindowProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
12
|
export default AdvanceFilterTitleWindow;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from "react";
|
|
2
2
|
interface CheckboxProps {
|
|
3
3
|
checked: boolean;
|
|
4
4
|
onClick: (checked: boolean) => void;
|
|
5
|
-
sizeVariant?:
|
|
5
|
+
sizeVariant?: "xs" | "sm" | "base";
|
|
6
6
|
id?: string;
|
|
7
7
|
}
|
|
8
8
|
declare const CheckboxComponent: React.FC<CheckboxProps>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
interface Header {
|
|
2
|
+
Header: string;
|
|
3
|
+
accessor: string;
|
|
4
|
+
}
|
|
5
|
+
interface ICompanyViewFinancialGenericTableProp {
|
|
6
|
+
headers: Header[];
|
|
7
|
+
data: any;
|
|
8
|
+
isError: boolean;
|
|
9
|
+
isLoading: boolean;
|
|
10
|
+
}
|
|
11
|
+
declare const CompanyViewFinancialGenericTable: ({ data, headers, isError, isLoading, }: ICompanyViewFinancialGenericTableProp) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export default CompanyViewFinancialGenericTable;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export interface INews {
|
|
2
|
+
ImageUrl: string;
|
|
3
|
+
newsTitle: string;
|
|
4
|
+
sourceName: string;
|
|
5
|
+
newsLink: string;
|
|
6
|
+
}
|
|
7
|
+
interface CompanyViewSummaryNewsComponentProps {
|
|
8
|
+
News: INews[];
|
|
9
|
+
}
|
|
10
|
+
declare const CompanyViewSummaryNewsComponentTab: ({ News, }: CompanyViewSummaryNewsComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export default CompanyViewSummaryNewsComponentTab;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { CompanyViewSummaryNewsTabsTypes } from "../../../types";
|
|
3
|
+
interface CompanyViewSummaryNewsTabsProps {
|
|
4
|
+
onCompanyViewSummaryNewsTabClick: (tab: string) => void;
|
|
5
|
+
activeCompanyViewSummaryNewsTabs: CompanyViewSummaryNewsTabsTypes;
|
|
6
|
+
}
|
|
7
|
+
declare const CompanyViewSummaryNewsTabs: React.FC<CompanyViewSummaryNewsTabsProps>;
|
|
8
|
+
export default CompanyViewSummaryNewsTabs;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
|
+
interface EllipsisPillNotClickableProps {
|
|
3
|
+
children: ReactNode;
|
|
4
|
+
hasBorder?: boolean;
|
|
5
|
+
sizeVariant: "xs" | "sm" | "base";
|
|
6
|
+
width?: string;
|
|
7
|
+
}
|
|
8
|
+
declare const EllipsisPillNotClickable: ({ children, hasBorder, sizeVariant, width, }: EllipsisPillNotClickableProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export default EllipsisPillNotClickable;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
|
+
type EllipsisTextProps = {
|
|
3
|
+
children: ReactNode;
|
|
4
|
+
maxWidth: number;
|
|
5
|
+
toolTipClassName?: string;
|
|
6
|
+
toolTipPosition?: "top" | "bottom" | "left" | "right";
|
|
7
|
+
};
|
|
8
|
+
declare const EllipsisText: ({ children, maxWidth, toolTipClassName, toolTipPosition, }: EllipsisTextProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export default EllipsisText;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const ToolbarItem: ({ editorState, updateEditorState, pasteHandler, value, contributors, }: any) => import("react/jsx-runtime").JSX.Element;
|
|
1
|
+
declare const ToolbarItem: ({ editorState, updateEditorState, pasteHandler, value, contributors, isLoading, }: any) => import("react/jsx-runtime").JSX.Element;
|
|
2
2
|
export default ToolbarItem;
|
|
@@ -2,6 +2,8 @@ interface Props {
|
|
|
2
2
|
value: string;
|
|
3
3
|
handleChange: (newTextValue: string) => void;
|
|
4
4
|
contributors?: string[];
|
|
5
|
+
isDisabled: boolean;
|
|
6
|
+
isLoading: boolean;
|
|
5
7
|
}
|
|
6
|
-
declare const NoteEditor: ({ value, handleChange, contributors }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
declare const NoteEditor: ({ value, handleChange, contributors, isDisabled, isLoading, }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
7
9
|
export default NoteEditor;
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import { IconSize } from
|
|
1
|
+
import { IconSize } from "../../types";
|
|
2
2
|
interface RectangularIconProps {
|
|
3
3
|
iconPath: string;
|
|
4
4
|
iconSize?: IconSize;
|
|
5
5
|
borderRadius?: IconSize;
|
|
6
|
+
padding?: number;
|
|
7
|
+
placeholderSize?: number;
|
|
8
|
+
placeholderPadding?: number;
|
|
6
9
|
altImageType?: string;
|
|
7
10
|
}
|
|
8
|
-
declare const RectangularIcon: ({ iconPath, iconSize, borderRadius, altImageType, }: RectangularIconProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
declare const RectangularIcon: ({ iconPath, iconSize, borderRadius, placeholderSize, placeholderPadding, padding, altImageType, }: RectangularIconProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
12
|
export default RectangularIcon;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { SearchPersonTableType } from
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { SearchPersonTableType } from "../../types";
|
|
3
3
|
interface SearchPersonTableProps {
|
|
4
4
|
onCheckClick: (publicIdentifier: string) => void;
|
|
5
5
|
onNameClick: (publicIdentifier: string) => void;
|
|
@@ -2,7 +2,7 @@ type TruncateTextProps = {
|
|
|
2
2
|
text: string;
|
|
3
3
|
length: number;
|
|
4
4
|
toolTipClassName?: string;
|
|
5
|
-
toolTipPosition?:
|
|
5
|
+
toolTipPosition?: "top" | "bottom" | "left" | "right";
|
|
6
6
|
};
|
|
7
7
|
declare const TruncateText: ({ text, length, toolTipClassName, toolTipPosition, }: TruncateTextProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
8
|
export default TruncateText;
|
|
@@ -42,6 +42,8 @@ export { default as CountCancelButton } from "./CountCancelButton";
|
|
|
42
42
|
export { default as DropdownComponent } from "./DropdownComponent";
|
|
43
43
|
export { default as DeleteSvgButton } from "./DeleteSvgButton/DeleteSvgButton";
|
|
44
44
|
export { default as EditSvgButton } from "./EditSvgButton/EditSvgButton";
|
|
45
|
+
export { default as EllipsisText } from "./EllipsisText";
|
|
46
|
+
export { default as EllipsisPillNotClickable } from "./EllipsisPillNotClickable";
|
|
45
47
|
export { default as FeedbackButton } from "./FeedbackButton";
|
|
46
48
|
export { default as FilterAddRemoveBadge } from "./FilterAddRemoveBadge";
|
|
47
49
|
export { default as FilterAndSortDropdown } from "./FilterAndSortDropdown";
|
|
@@ -133,4 +135,6 @@ export { default as LineChart } from "./Charts/LineChart";
|
|
|
133
135
|
export { default as CompanyViewFinancialPrivateTabs } from "./CompanyView/CompanyViewFinancialPrivateTabs";
|
|
134
136
|
export { default as StatsChart } from "./Charts/StatsChart/Index";
|
|
135
137
|
export { default as CompanyViewFinancialIncomeStatement } from "./CompanyView/CompanyViewFinancialIncomeStatement";
|
|
136
|
-
export { default as CompanyViewFinancialGenericTable } from "./CompanyView/
|
|
138
|
+
export { default as CompanyViewFinancialGenericTable } from "./CompanyView/CompanyViewFinancialGenericTable";
|
|
139
|
+
export { default as CompanyViewSummaryNewsTabs } from "./CompanyView/CompanyViewSummaryNewsTabs";
|
|
140
|
+
export { default as CompanyViewSummaryNewsCompoment } from "./CompanyView/CompanyViewSummaryNewsCompoment";
|