@pronto-tools-and-more/components 6.38.0 → 6.40.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
@@ -1,3 +1,11 @@
1
+ // src/parts/Container/Container.tsx
2
+ var Container = ({
3
+ children
4
+ }) => {
5
+ const childrenArray = Array.isArray(children) ? children : [children];
6
+ return /* @__PURE__ */ React.createElement("div", { className: "Container" }, ...childrenArray);
7
+ };
8
+
1
9
  // src/parts/JsonComponent/JsonComponent.tsx
2
10
  var JsonComponent = ({ json }) => {
3
11
  const node = json;
@@ -430,6 +438,7 @@ var SubscriptionLink = ({ message } = {}) => {
430
438
  return /* @__PURE__ */ React.createElement("div", { className: "SubscriptionLink" }, /* @__PURE__ */ React.createElement(JsonComponent, { json }));
431
439
  };
432
440
  export {
441
+ Container,
433
442
  ContentBody,
434
443
  ContentTitle,
435
444
  EPaperLink,
@@ -1,3 +1,4 @@
1
+ export * from "../Container/Container.tsx";
1
2
  export * from "../ContentBody/ContentBody.tsx";
2
3
  export * from "../ContentTitle/ContentTitle.tsx";
3
4
  export * from "../EPaperLink/EPaperLink.tsx";
@@ -0,0 +1,3 @@
1
+ export declare const Container: ({ children, }: {
2
+ children: React.ReactNode;
3
+ }) => React.ReactNode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pronto-tools-and-more/components",
3
- "version": "6.38.0",
3
+ "version": "6.40.0",
4
4
  "description": "",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",