@pronto-tools-and-more/components 14.12.0 → 14.14.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
@@ -699,7 +699,8 @@ var DossierList = ({
|
|
699
699
|
render,
|
700
700
|
collectionName,
|
701
701
|
language,
|
702
|
-
id
|
702
|
+
id,
|
703
|
+
noContentFound
|
703
704
|
}) => {
|
704
705
|
const dataSource = getDossierDataSource({ collectionName, id });
|
705
706
|
const json = {
|
@@ -709,7 +710,8 @@ var DossierList = ({
|
|
709
710
|
type: "list",
|
710
711
|
class: "epaper-issues",
|
711
712
|
template: "grid",
|
712
|
-
language
|
713
|
+
language,
|
714
|
+
emptyMessage: noContentFound
|
713
715
|
};
|
714
716
|
return /* @__PURE__ */ React.createElement("div", { className: "DossierList" }, /* @__PURE__ */ React.createElement(JsonComponent, { json }));
|
715
717
|
};
|
@@ -1,7 +1,8 @@
|
|
1
1
|
import { DossierListItemRenderer } from "../DossierListItemRenderer/DossierListItemRenderer.ts";
|
2
|
-
export declare const DossierList: ({ render, collectionName, language, id, }: {
|
2
|
+
export declare const DossierList: ({ render, collectionName, language, id, noContentFound, }: {
|
3
3
|
render: DossierListItemRenderer;
|
4
4
|
collectionName?: string;
|
5
5
|
language?: string;
|
6
6
|
id?: string;
|
7
|
+
noContentFound?: string;
|
7
8
|
}) => import("react").JSX.Element;
|