@pronto-tools-and-more/components 10.48.0 → 10.49.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
@@ -246,7 +246,8 @@ var ArticleList = ({
|
|
246
246
|
bundleId,
|
247
247
|
limit,
|
248
248
|
offset,
|
249
|
-
collectionName
|
249
|
+
collectionName,
|
250
|
+
noContentFound
|
250
251
|
}) => {
|
251
252
|
const dataSource = getArticleListDataSource({
|
252
253
|
properties,
|
@@ -285,7 +286,8 @@ var ArticleList = ({
|
|
285
286
|
label: ""
|
286
287
|
}
|
287
288
|
}
|
288
|
-
}
|
289
|
+
},
|
290
|
+
emptyMessage: noContentFound
|
289
291
|
};
|
290
292
|
return /* @__PURE__ */ React.createElement("div", { className: "ArticleList IssueList" }, /* @__PURE__ */ React.createElement(JsonComponent, { json }));
|
291
293
|
};
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import type { ArticleListItemRenderer } from "../ArticleListItemRenderer/ArticleListItemRenderer.ts";
|
2
|
-
export declare const ArticleList: ({ properties, render, authorId, categoryId, bundleId, limit, offset, collectionName, }: {
|
2
|
+
export declare const ArticleList: ({ properties, render, authorId, categoryId, bundleId, limit, offset, collectionName, noContentFound, }: {
|
3
3
|
properties?: any;
|
4
4
|
authorId?: string;
|
5
5
|
categoryId?: string;
|
@@ -8,4 +8,5 @@ export declare const ArticleList: ({ properties, render, authorId, categoryId, b
|
|
8
8
|
limit?: number;
|
9
9
|
offset?: number;
|
10
10
|
collectionName?: string;
|
11
|
+
noContentFound?: string;
|
11
12
|
}) => import("react").JSX.Element;
|