@pronto-tools-and-more/components 8.19.0 → 8.21.0
Sign up to get free protection for your applications and to get access to all the features.
package/dist/main.js
CHANGED
@@ -14,6 +14,7 @@ export * from "../HeaderLogoSection/HeaderLogoSection.tsx";
|
|
14
14
|
export * from "../HeaderMenuItems/HeaderMenuItems.tsx";
|
15
15
|
export * from "../Heading/Heading.tsx";
|
16
16
|
export * from "../IFooterSocialLink/IFooterSocialLink.ts";
|
17
|
+
export * from "../IIssueListItem/IIsueListItem.ts";
|
17
18
|
export * from "../ISearchResult/ISearchResult.ts";
|
18
19
|
export * from "../ISearchResultComponent/ISearchResultComponent.tsx";
|
19
20
|
export * from "../IssueList/IssueList.tsx";
|
@@ -1,9 +1,5 @@
|
|
1
1
|
import type React from "react";
|
2
|
+
import type { IIssueListItem } from "../IIssueListItem/IIsueListItem.ts";
|
2
3
|
export interface IssueListItemRenderer {
|
3
|
-
({ name, description, imageSrc, properties, }:
|
4
|
-
name: string;
|
5
|
-
description: string;
|
6
|
-
imageSrc: string;
|
7
|
-
properties: any;
|
8
|
-
}): React.ReactNode;
|
4
|
+
({ name, description, imageSrc, properties, }: IIssueListItem): React.ReactNode;
|
9
5
|
}
|