qlu-20-ui-library 1.1.48 → 1.1.49
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/CompanyPill/index.d.ts +10 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/library.es.js +198 -185
- package/dist/library.umd.js +13 -13
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
interface CompanyPillProps {
|
|
3
|
+
text: string;
|
|
4
|
+
onCrossClick: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
5
|
+
onReplaceClick: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
6
|
+
picturePath?: string;
|
|
7
|
+
props?: object;
|
|
8
|
+
}
|
|
9
|
+
declare const CompanyPill: ({ text, onCrossClick, onReplaceClick, picturePath, props, }: CompanyPillProps) => JSX.Element;
|
|
10
|
+
export default CompanyPill;
|
|
@@ -109,3 +109,4 @@ export { default as SettingsNavbar } from './SettingsNavbar';
|
|
|
109
109
|
export { default as SavedSearches } from './SearchFilterSideDrawer/SaveSearch';
|
|
110
110
|
export { default as ConnectDropdown } from './ConnectDropdown';
|
|
111
111
|
export { default as PeopleCard } from './PeopleCard';
|
|
112
|
+
export { default as CompanyPill } from './CompanyPill';
|