@pronto-tools-and-more/components 9.19.0 → 10.0.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 +4 -4
- package/dist/parts/ArticleList/ArticleList.d.ts +8 -0
- package/dist/parts/ArticleListItemRenderer/ArticleListItemRenderer.d.ts +5 -0
- package/dist/parts/Components/Components.d.ts +3 -3
- package/dist/parts/{IIssueListItem/IIssueListItem.d.ts → IArticleListItem/IArticleListItem.d.ts} +1 -1
- package/dist/parts/Parts/Parts.d.ts +1 -1
- package/package.json +1 -1
- package/dist/parts/IssueList/IssueList.d.ts +0 -8
- package/dist/parts/IssueListItemRenderer/IssueListItemRenderer.d.ts +0 -5
package/dist/main.js
CHANGED
@@ -333,8 +333,8 @@ var createFilterFromProperties = ({
|
|
333
333
|
return outerFilter;
|
334
334
|
};
|
335
335
|
|
336
|
-
// src/parts/
|
337
|
-
var
|
336
|
+
// src/parts/ArticleList/ArticleList.tsx
|
337
|
+
var ArticleList = ({
|
338
338
|
properties,
|
339
339
|
render,
|
340
340
|
authorId,
|
@@ -402,7 +402,7 @@ var IssueList = ({
|
|
402
402
|
}
|
403
403
|
}
|
404
404
|
};
|
405
|
-
return /* @__PURE__ */ React.createElement("div", { className: "IssueList" }, /* @__PURE__ */ React.createElement(JsonComponent, { json }));
|
405
|
+
return /* @__PURE__ */ React.createElement("div", { className: "ArticleList IssueList" }, /* @__PURE__ */ React.createElement(JsonComponent, { json }));
|
406
406
|
};
|
407
407
|
|
408
408
|
// src/parts/Link/Link.tsx
|
@@ -686,6 +686,7 @@ var SubscriptionLink = ({ message } = {}) => {
|
|
686
686
|
return /* @__PURE__ */ React.createElement("div", { className: "SubscriptionLink" }, /* @__PURE__ */ React.createElement(JsonComponent, { json }));
|
687
687
|
};
|
688
688
|
export {
|
689
|
+
ArticleList,
|
689
690
|
Button,
|
690
691
|
CategoryList,
|
691
692
|
Collection,
|
@@ -702,7 +703,6 @@ export {
|
|
702
703
|
HeaderLogoSection,
|
703
704
|
HeaderMenuItems,
|
704
705
|
Heading,
|
705
|
-
IssueList,
|
706
706
|
JsonComponent,
|
707
707
|
Link,
|
708
708
|
Login,
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { ArticleListItemRenderer } from "../ArticleListItemRenderer/ArticleListItemRenderer.ts";
|
2
|
+
export declare const ArticleList: ({ properties, render, authorId, categoryId, bundleId, }: {
|
3
|
+
properties: any;
|
4
|
+
authorId?: string;
|
5
|
+
categoryId?: string;
|
6
|
+
bundleId?: string;
|
7
|
+
render: ArticleListItemRenderer;
|
8
|
+
}) => import("react").JSX.Element;
|
@@ -16,11 +16,11 @@ export * from "../HeaderMenuItems/HeaderMenuItems.tsx";
|
|
16
16
|
export * from "../Heading/Heading.tsx";
|
17
17
|
export * from "../ICategoryItem/ICategoryItem.ts";
|
18
18
|
export * from "../IFooterSocialLink/IFooterSocialLink.ts";
|
19
|
-
export * from "../
|
19
|
+
export * from "../IArticleListItem/IArticleListItem.ts";
|
20
20
|
export * from "../ISearchResult/ISearchResult.ts";
|
21
21
|
export * from "../ISearchResultComponent/ISearchResultComponent.tsx";
|
22
|
-
export * from "../
|
23
|
-
export * from "../
|
22
|
+
export * from "../ArticleList/ArticleList.tsx";
|
23
|
+
export * from "../ArticleListItemRenderer/ArticleListItemRenderer.ts";
|
24
24
|
export * from "../JsonComponent/JsonComponent.tsx";
|
25
25
|
export * from "../Link/Link.tsx";
|
26
26
|
export * from "../Login/Login.tsx";
|
@@ -2,7 +2,7 @@ export * from "../AppBar/AppBar.tsx";
|
|
2
2
|
export * from "../Button/Button.tsx";
|
3
3
|
export * from "../EPapers/EPapers.tsx";
|
4
4
|
export * from "../Home/Home.tsx";
|
5
|
-
export * from "../
|
5
|
+
export * from "../ArticleList/ArticleList.tsx";
|
6
6
|
export * from "../Login/Login.tsx";
|
7
7
|
export * from "../MostRead/MostRead.tsx";
|
8
8
|
export * from "../NoSearchResults/NoSearchResults.tsx";
|
package/package.json
CHANGED
@@ -1,8 +0,0 @@
|
|
1
|
-
import { IssueListItemRenderer } from "../IssueListItemRenderer/IssueListItemRenderer.ts";
|
2
|
-
export declare const IssueList: ({ properties, render, authorId, categoryId, bundleId, }: {
|
3
|
-
properties: any;
|
4
|
-
authorId?: string;
|
5
|
-
categoryId?: string;
|
6
|
-
bundleId?: string;
|
7
|
-
render: IssueListItemRenderer;
|
8
|
-
}) => import("react").JSX.Element;
|