@pronto-tools-and-more/components 14.45.0 → 14.47.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 +3 -0
- package/dist/parts/IArticleListItem/IArticleListItem.d.ts +1 -0
- package/dist/parts/IDossierListItem/IDossierListItem.d.ts +1 -0
- package/dist/parts/ISearchResult/ISearchResult.d.ts +1 -0
- package/dist/parts/ISearchResultComponent/ISearchResultComponent.d.ts +1 -3
- package/package.json +1 -1
package/dist/main.js
CHANGED
@@ -353,6 +353,7 @@ var getNodeInfo = (element) => {
|
|
353
353
|
id: `$functions.id($context, ${contentKey}, 'id')`,
|
354
354
|
primaryCategoryId: `$functions.getPrimaryCategoryProperty($context[${contentKey}], 'id')`,
|
355
355
|
primaryCategoryName: `$functions.getPrimaryCategoryProperty($context[${contentKey}], 'name')`,
|
356
|
+
primaryCategoryLanguage: `$functions.getLanguage($functions.getPrimaryCategoryProperty($context[${contentKey}], 'properties', 'lang'))`,
|
356
357
|
access: `$functions.id($context, ${contentKey}, 'access')`,
|
357
358
|
language: `$functions.getLanguage($functions.id($context, ${contentKey}))`
|
358
359
|
};
|
@@ -740,6 +741,7 @@ var unrender7 = (element, renderElement) => {
|
|
740
741
|
slug: `$functions.id($context, ${contentKey}, 'properties', 'slug')`,
|
741
742
|
totalCount: "n/a",
|
742
743
|
// TODO use real total count once supported
|
744
|
+
contentsCount: `$functions.id($context, ${contentKey}, 'contentsCount')`,
|
743
745
|
language
|
744
746
|
});
|
745
747
|
const final = renderElement(node);
|
@@ -1798,6 +1800,7 @@ var getNodeInfo3 = (element) => {
|
|
1798
1800
|
slug: `$functions.id($context, ${contentKey}, 'issue', 'properties', 'slug')`,
|
1799
1801
|
primaryCategoryId: `$functions.getPrimaryCategoryProperty($context[${contentKey}]['issue'], 'id')`,
|
1800
1802
|
primaryCategoryName: `$functions.getPrimaryCategoryProperty($context[${contentKey}]['issue'], 'name')`,
|
1803
|
+
primaryCategoryLanguage: `$functions.getLanguage($functions.getPrimaryCategoryProperty($context[${contentKey}]['issue'], 'properties', 'lang'))`,
|
1801
1804
|
metadataVideoPodcast: `$functions.id($context, ${contentKey}, 'issue', 'metadataVideoPodcast')`,
|
1802
1805
|
readTime: `$functions.getReadTime($functions.id($context, ${contentKey}, 'issue'))`,
|
1803
1806
|
access: `$functions.id($context, ${contentKey}, 'issue', 'access')`
|