@pronto-tools-and-more/components 10.3.0 → 10.4.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
@@ -703,6 +703,22 @@ var SubscriptionLink = ({ message } = {}) => {
|
|
703
703
|
};
|
704
704
|
return /* @__PURE__ */ React.createElement("div", { className: "SubscriptionLink" }, /* @__PURE__ */ React.createElement(JsonComponent, { json }));
|
705
705
|
};
|
706
|
+
|
707
|
+
// src/parts/TagList/TagList.tsx
|
708
|
+
var TagList = ({ render }) => {
|
709
|
+
const json = {
|
710
|
+
render,
|
711
|
+
dataSource: {
|
712
|
+
data: "$context.content.taxonomies",
|
713
|
+
type: "context",
|
714
|
+
batchSize: 1e6
|
715
|
+
},
|
716
|
+
type: "list",
|
717
|
+
class: "data-custom-tag-list",
|
718
|
+
template: "horizontal"
|
719
|
+
};
|
720
|
+
return /* @__PURE__ */ React.createElement("div", { className: "TagList" }, /* @__PURE__ */ React.createElement(JsonComponent, { json }));
|
721
|
+
};
|
706
722
|
export {
|
707
723
|
ArticleAuthors,
|
708
724
|
ArticleList,
|
@@ -734,5 +750,6 @@ export {
|
|
734
750
|
SearchHeaderToggle,
|
735
751
|
SearchLink,
|
736
752
|
SearchResults,
|
737
|
-
SubscriptionLink
|
753
|
+
SubscriptionLink,
|
754
|
+
TagList
|
738
755
|
};
|
@@ -22,6 +22,7 @@ export * from "../ICategoryItem/ICategoryItem.ts";
|
|
22
22
|
export * from "../IFooterSocialLink/IFooterSocialLink.ts";
|
23
23
|
export * from "../ISearchResult/ISearchResult.ts";
|
24
24
|
export * from "../ISearchResultComponent/ISearchResultComponent.tsx";
|
25
|
+
export * from "../ITagItem/ITagItem.ts";
|
25
26
|
export * from "../JsonComponent/JsonComponent.tsx";
|
26
27
|
export * from "../Link/Link.tsx";
|
27
28
|
export * from "../Login/Login.tsx";
|
@@ -35,3 +36,4 @@ export * from "../SearchHeaderToggle/SearchHeaderToggle.tsx";
|
|
35
36
|
export * from "../SearchLink/SearchLink.tsx";
|
36
37
|
export * from "../SearchResults/SearchResults.tsx";
|
37
38
|
export * from "../SubscriptionLink/SubscriptionLink.tsx";
|
39
|
+
export * from "../TagList/TagList.tsx";
|