@pronto-tools-and-more/components 15.4.0 → 15.5.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
@@ -1498,7 +1498,8 @@ var unrender12 = (element, renderElement) => {
1498
1498
  const node = render({
1499
1499
  id: `$functions.id($context, 'issue', 'id')`,
1500
1500
  imageSrc: `$functions.id($context, 'issue', 'thumbnails', 'default')`,
1501
- date: `$functions.id($context, 'issue', 'publicationDate')`
1501
+ date: `$functions.id($context, 'issue', 'publicationDate')`,
1502
+ description: `$functions.id($context, 'issue', 'description')`
1502
1503
  });
1503
1504
  const final = renderElement(node);
1504
1505
  return {
@@ -2,4 +2,5 @@ export interface IEPaperItem {
2
2
  readonly id: string;
3
3
  readonly date: string;
4
4
  readonly imageSrc: string;
5
+ readonly description: string;
5
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pronto-tools-and-more/components",
3
- "version": "15.4.0",
3
+ "version": "15.5.0",
4
4
  "description": "",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",