@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,
|