@pronto-tools-and-more/components 6.28.0 → 6.29.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
@@ -4,6 +4,22 @@ var JsonComponent = ({ json }) => {
|
|
4
4
|
return node;
|
5
5
|
};
|
6
6
|
|
7
|
+
// src/parts/ContentBody/ContentBody.tsx
|
8
|
+
var ContentBody = () => {
|
9
|
+
const json = {
|
10
|
+
type: "content-body"
|
11
|
+
};
|
12
|
+
return /* @__PURE__ */ React.createElement(JsonComponent, { json });
|
13
|
+
};
|
14
|
+
|
15
|
+
// src/parts/ContentTitle/ContentTitle.tsx
|
16
|
+
var ContentTitle = () => {
|
17
|
+
const json = {
|
18
|
+
type: "content-title"
|
19
|
+
};
|
20
|
+
return /* @__PURE__ */ React.createElement(JsonComponent, { json });
|
21
|
+
};
|
22
|
+
|
7
23
|
// src/parts/EPaperLink/EPaperLink.tsx
|
8
24
|
var EPaperLink = ({ message } = {}) => {
|
9
25
|
const json = {
|
@@ -337,6 +353,8 @@ var SubscriptionLink = ({ message } = {}) => {
|
|
337
353
|
return /* @__PURE__ */ React.createElement("div", { className: "SubscriptionLink" }, /* @__PURE__ */ React.createElement(JsonComponent, { json }));
|
338
354
|
};
|
339
355
|
export {
|
356
|
+
ContentBody,
|
357
|
+
ContentTitle,
|
340
358
|
EPaperLink,
|
341
359
|
FooterItemsList,
|
342
360
|
HeaderMenuItems,
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const ContentBody: () => import("react").JSX.Element;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const ContentTitle: () => import("react").JSX.Element;
|