qlu-20-ui-library 1.1.82 → 1.1.84
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/CompanyDetailsCard/index.d.ts +2 -2
- package/dist/components/CompanyPeopleTab/index.d.ts +5 -4
- package/dist/components/CompanyView/CompanyViewBody/index.d.ts +2 -2
- package/dist/components/CompanyView/CompanyViewBussinessUnitTab/index.d.ts +8 -0
- package/dist/components/CompanyView/CompanyViewPeople/index.d.ts +2 -3
- package/dist/components/NoteEditor/FontSizeControl.d.ts +8 -0
- package/dist/components/PersonView/PersonViewExperienceCard/index.d.ts +1 -0
- package/dist/components/PersonView/PersonViewExperienceDetails/index.d.ts +1 -0
- package/dist/components/PersonView/PersonViewInfo/index.d.ts +1 -1
- package/dist/components/RecentChatComponent/index.d.ts +1 -1
- package/dist/components/SkillIndustryBadge/index.d.ts +4 -1
- package/dist/components/TablePagination/index.d.ts +4 -2
- package/dist/components/TopNavbar/index.d.ts +2 -2
- package/dist/components/index.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/library.es.js +14423 -14512
- package/dist/library.umd.js +141 -141
- package/dist/types.d.ts +5 -2
- package/dist/utils.d.ts +4 -3
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { P2pCompany } from
|
|
2
|
+
import { P2pCompany } from "../../types";
|
|
3
3
|
interface CompanyDetailsCardProps {
|
|
4
4
|
company: P2pCompany;
|
|
5
5
|
descriptionCollapseCount?: number;
|
|
6
6
|
}
|
|
7
|
-
declare const CompanyDetailsCard: ({ company, descriptionCollapseCount }: CompanyDetailsCardProps) => JSX.Element;
|
|
7
|
+
declare const CompanyDetailsCard: ({ company, descriptionCollapseCount, }: CompanyDetailsCardProps) => JSX.Element;
|
|
8
8
|
export default CompanyDetailsCard;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { Profile } from '../PeopleCard/interface';
|
|
3
2
|
export interface ICompanyPeople {
|
|
4
3
|
startOfTenure?: string;
|
|
5
4
|
endOfTenure?: string;
|
|
6
|
-
|
|
5
|
+
personName: string;
|
|
6
|
+
title: string;
|
|
7
|
+
profileImg: string;
|
|
7
8
|
}
|
|
8
9
|
interface ICompanyPeopleTabProps {
|
|
9
|
-
onNameClick: (url: String) =>
|
|
10
|
+
onNameClick: (url: String) => void;
|
|
10
11
|
isPrevious?: boolean;
|
|
11
12
|
peoples: ICompanyPeople[];
|
|
12
13
|
}
|
|
13
|
-
declare const CompanyPeopleTab: ({ onNameClick, isPrevious, peoples }: ICompanyPeopleTabProps) => JSX.Element;
|
|
14
|
+
declare const CompanyPeopleTab: ({ onNameClick, isPrevious, peoples, }: ICompanyPeopleTabProps) => JSX.Element;
|
|
14
15
|
export default CompanyPeopleTab;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { CompanyViewSummaryTypes, CompanyViewTabsTypes } from
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { CompanyViewSummaryTypes, CompanyViewTabsTypes } from "../../../types";
|
|
3
3
|
interface CompanyViewBodyProps {
|
|
4
4
|
companyViewActiveTab: CompanyViewTabsTypes;
|
|
5
5
|
companyViewSummaryPayload: CompanyViewSummaryTypes;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { CompanyViewBussinessUnitTabsTypes } from "../../../types";
|
|
3
|
+
interface CompanyViewBussinessUnitTabsProps {
|
|
4
|
+
onCompanyViewBussinessUnitTabsClick: (tab: string) => void;
|
|
5
|
+
activeCompanyViewBussinessUnitTabs: CompanyViewBussinessUnitTabsTypes;
|
|
6
|
+
}
|
|
7
|
+
declare const CompanyViewBussinessUnitTabs: React.FC<CompanyViewBussinessUnitTabsProps>;
|
|
8
|
+
export default CompanyViewBussinessUnitTabs;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from "react";
|
|
2
2
|
interface CompanyViewPeopleProps {
|
|
3
3
|
onCompanyViewPeopleTabClick: (tab: string) => void;
|
|
4
|
-
activeCompanyViewPeopleTab:
|
|
5
|
-
children: React.ReactNode;
|
|
4
|
+
activeCompanyViewPeopleTab: "Current" | "Previous";
|
|
6
5
|
}
|
|
7
6
|
declare const CompanyViewPeople: React.FC<CompanyViewPeopleProps>;
|
|
8
7
|
export default CompanyViewPeople;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { EditorState } from 'draft-js';
|
|
3
|
+
interface FontSizeControlProps {
|
|
4
|
+
editorState: EditorState;
|
|
5
|
+
updateEditorState: (newEditorState: EditorState) => void;
|
|
6
|
+
}
|
|
7
|
+
declare const FontSizeControl: React.FC<FontSizeControlProps>;
|
|
8
|
+
export default FontSizeControl;
|
|
@@ -7,6 +7,7 @@ interface PersonViewExperienceCardProps {
|
|
|
7
7
|
duration: string;
|
|
8
8
|
experienceDetails: PersonExperienceDetailsTypes[];
|
|
9
9
|
onCompanyNameClick: (universalName: string, urn: string) => void;
|
|
10
|
+
highlightAbout: (skill: string, type: "skill" | "speciality" | "industry", action: "enter" | "leave" | "click") => void;
|
|
10
11
|
}
|
|
11
12
|
declare const PersonViewExperienceCard: React.FC<PersonViewExperienceCardProps>;
|
|
12
13
|
export default PersonViewExperienceCard;
|
|
@@ -3,6 +3,7 @@ import { PersonExperienceDetailsTypes } from "../../../types";
|
|
|
3
3
|
interface PersonViewExperienceDetailsProps {
|
|
4
4
|
experienceDetails: PersonExperienceDetailsTypes;
|
|
5
5
|
onCompanyNameClick: (universalName: string, urn: string) => void;
|
|
6
|
+
highlightAbout: (skill: string, type: "skill" | "speciality" | "industry", action: "enter" | "leave" | "click") => void;
|
|
6
7
|
}
|
|
7
8
|
declare const PersonViewExperienceDetails: React.FC<PersonViewExperienceDetailsProps>;
|
|
8
9
|
export default PersonViewExperienceDetails;
|
|
@@ -10,5 +10,5 @@ interface RecentChatComponentProps {
|
|
|
10
10
|
onClick: () => void;
|
|
11
11
|
onEditSubmit: (newString: string) => void;
|
|
12
12
|
}
|
|
13
|
-
declare const RecentChatComponent: ({ text,
|
|
13
|
+
declare const RecentChatComponent: ({ text, isSelected, isDisabled, isLoading, onEditButtonClick, onDelete, onClick, onEditSubmit, }: RecentChatComponentProps) => JSX.Element;
|
|
14
14
|
export default RecentChatComponent;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from "react";
|
|
2
2
|
interface SkillIndustryBadgeProps {
|
|
3
3
|
text: string;
|
|
4
|
+
type?: "skill" | "speciality" | "industry";
|
|
5
|
+
highlight?: (skill: string, type: "skill" | "speciality" | "industry", action: "enter" | "leave" | "click") => void;
|
|
6
|
+
highlightPill?: boolean;
|
|
4
7
|
}
|
|
5
8
|
declare const SkillIndustryBadge: React.FC<SkillIndustryBadgeProps>;
|
|
6
9
|
export default SkillIndustryBadge;
|
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
2
|
interface TablePaginationProps {
|
|
3
3
|
totalCount: number;
|
|
4
4
|
lowerCap: number;
|
|
5
5
|
upperCap: number;
|
|
6
|
+
currentPage?: number;
|
|
7
|
+
pageButtons?: number[];
|
|
6
8
|
onPrevClick: () => void;
|
|
7
9
|
onNextClick: () => void;
|
|
8
10
|
onPageNumberClick: (pageNumber: number) => void;
|
|
9
|
-
|
|
11
|
+
totalPages: number;
|
|
10
12
|
}
|
|
11
13
|
declare const TablePagination: React.FC<TablePaginationProps>;
|
|
12
14
|
export default TablePagination;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { IconType, TopNavbarButtonTypes } from
|
|
2
|
+
import { IconType, TopNavbarButtonTypes } from "../../types";
|
|
3
3
|
interface NavbarProps {
|
|
4
4
|
navbarIcon: IconType;
|
|
5
5
|
onClick: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
@@ -13,5 +13,5 @@ interface TopNavbarProps {
|
|
|
13
13
|
dropdownItemList: string[];
|
|
14
14
|
onLabelClick: (value: string) => void;
|
|
15
15
|
}
|
|
16
|
-
declare const TopNavbar: ({ props, navbarTabs, dropdownItemList, onLabelClick }: TopNavbarProps) => JSX.Element;
|
|
16
|
+
declare const TopNavbar: ({ props, navbarTabs, dropdownItemList, onLabelClick, }: TopNavbarProps) => JSX.Element;
|
|
17
17
|
export default TopNavbar;
|
|
@@ -139,3 +139,4 @@ export { default as CompanyViewFinancialIncomeStatement } from "./CompanyView/Co
|
|
|
139
139
|
export { default as CompanyViewFinancialGenericTable } from "./CompanyView/CompanyViewFinancialGenericTable";
|
|
140
140
|
export { default as CompanyViewSummaryNewsTabs } from "./CompanyView/CompanyViewSummaryNewsTabs";
|
|
141
141
|
export { default as CompanyViewSummaryNewsCompoment } from "./CompanyView/CompanyViewSummaryNewsCompoment";
|
|
142
|
+
export { default as CompanyViewBussinessUnitTabs } from "./CompanyView/CompanyViewBussinessUnitTab";
|