@pronto-tools-and-more/components 6.28.0 → 6.29.0

Sign up to get free protection for your applications and to get access to all the features.
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,
@@ -1,3 +1,5 @@
1
+ export * from "../ContentBody/ContentBody.tsx";
2
+ export * from "../ContentTitle/ContentTitle.tsx";
1
3
  export * from "../EPaperLink/EPaperLink.tsx";
2
4
  export * from "../FooterItemsList/FooterItemsList.tsx";
3
5
  export * from "../HeaderMenuItems/HeaderMenuItems.tsx";
@@ -0,0 +1 @@
1
+ export declare const ContentBody: () => import("react").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const ContentTitle: () => import("react").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pronto-tools-and-more/components",
3
- "version": "6.28.0",
3
+ "version": "6.29.0",
4
4
  "description": "",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",