catchup-library-web 1.6.0 → 1.6.2
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/index.js
CHANGED
|
@@ -3464,6 +3464,7 @@ var ActivityBodyContent = ({
|
|
|
3464
3464
|
contentMap,
|
|
3465
3465
|
answerMap
|
|
3466
3466
|
}) => {
|
|
3467
|
+
console.log(bodyMap, contentMap);
|
|
3467
3468
|
if (!bodyMap || !contentMap) return null;
|
|
3468
3469
|
const processBodyValue = (bodyValue, contentType, answerMap2) => {
|
|
3469
3470
|
var _a;
|
|
@@ -3530,6 +3531,7 @@ var ActivityBodyContent = ({
|
|
|
3530
3531
|
key
|
|
3531
3532
|
});
|
|
3532
3533
|
}).filter(Boolean);
|
|
3534
|
+
console.log(processedBodies);
|
|
3533
3535
|
return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "flex flex-col justify-center items-center", children: processedBodies.map((body, index) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
3534
3536
|
ShowBodyMediaByContentType_default,
|
|
3535
3537
|
{
|
package/dist/index.mjs
CHANGED
|
@@ -3272,6 +3272,7 @@ var ActivityBodyContent = ({
|
|
|
3272
3272
|
contentMap,
|
|
3273
3273
|
answerMap
|
|
3274
3274
|
}) => {
|
|
3275
|
+
console.log(bodyMap, contentMap);
|
|
3275
3276
|
if (!bodyMap || !contentMap) return null;
|
|
3276
3277
|
const processBodyValue = (bodyValue, contentType, answerMap2) => {
|
|
3277
3278
|
var _a;
|
|
@@ -3338,6 +3339,7 @@ var ActivityBodyContent = ({
|
|
|
3338
3339
|
key
|
|
3339
3340
|
});
|
|
3340
3341
|
}).filter(Boolean);
|
|
3342
|
+
console.log(processedBodies);
|
|
3341
3343
|
return /* @__PURE__ */ jsx13("div", { className: "flex flex-col justify-center items-center", children: processedBodies.map((body, index) => /* @__PURE__ */ jsx13(
|
|
3342
3344
|
ShowBodyMediaByContentType_default,
|
|
3343
3345
|
{
|
package/package.json
CHANGED
|
@@ -7,6 +7,7 @@ const ActivityBodyContent = ({
|
|
|
7
7
|
contentMap,
|
|
8
8
|
answerMap,
|
|
9
9
|
}: IActivityBodyContentProps) => {
|
|
10
|
+
console.log(bodyMap, contentMap);
|
|
10
11
|
if (!bodyMap || !contentMap) return null;
|
|
11
12
|
|
|
12
13
|
const processBodyValue = (
|
|
@@ -91,6 +92,8 @@ const ActivityBodyContent = ({
|
|
|
91
92
|
})
|
|
92
93
|
.filter(Boolean);
|
|
93
94
|
|
|
95
|
+
console.log(processedBodies);
|
|
96
|
+
|
|
94
97
|
return (
|
|
95
98
|
<div className="flex flex-col justify-center items-center">
|
|
96
99
|
{processedBodies.map((body, index) => (
|