@pronto-tools-and-more/components 8.19.0 → 8.21.0

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/main.js CHANGED
@@ -42,7 +42,7 @@ var Collection = ({
42
42
  }
43
43
  },
44
44
  type: "list",
45
- class: "schlauch-section-content data-custom-list",
45
+ class: "schlauch-section-content data-custom-collection",
46
46
  tapEntry: {
47
47
  value: {
48
48
  type: "openUrl",
@@ -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";
@@ -0,0 +1,6 @@
1
+ export interface IIssueListItem {
2
+ readonly name: string;
3
+ readonly description: string;
4
+ readonly imageSrc: string;
5
+ readonly properties: any;
6
+ }
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pronto-tools-and-more/components",
3
- "version": "8.19.0",
3
+ "version": "8.21.0",
4
4
  "description": "",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",