@flamingo-stack/openframe-frontend-core 0.0.79-snapshot.20260325034250 → 0.0.79
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/components/index.cjs +7 -1
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.js +7 -1
- package/dist/components/index.js.map +1 -1
- package/dist/components/shared/product-release/release-detail-page.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/shared/product-release/release-detail-page.tsx +10 -0
|
@@ -38160,6 +38160,7 @@ function ReleaseDetailPage({
|
|
|
38160
38160
|
const videoBites = release.video_bites;
|
|
38161
38161
|
const highlightVideoUrl = release.highlight_video_url;
|
|
38162
38162
|
const highlightVideoThumbnail = release.highlight_video_thumbnail;
|
|
38163
|
+
const videoSummary = release.video_summary;
|
|
38163
38164
|
const breakingChanges = release.breaking_changes;
|
|
38164
38165
|
const featuresAdded = release.features_added;
|
|
38165
38166
|
const bugFixed = release.bugs_fixed;
|
|
@@ -38242,6 +38243,7 @@ function ReleaseDetailPage({
|
|
|
38242
38243
|
highlightVideoUrl,
|
|
38243
38244
|
highlightVideoThumbnail,
|
|
38244
38245
|
title: releaseTitle,
|
|
38246
|
+
videoSummary,
|
|
38245
38247
|
videoBites,
|
|
38246
38248
|
bitesTitle: "Video Clips",
|
|
38247
38249
|
filterPublishedBites: true
|
|
@@ -38252,7 +38254,11 @@ function ReleaseDetailPage({
|
|
|
38252
38254
|
return videoId ? /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)(YouTubeEmbed, { videoId, title: `${releaseTitle} - Video`, showTitle: false, showMeta: true }) : null;
|
|
38253
38255
|
})(),
|
|
38254
38256
|
!youtubeUrl && mainVideoUrl && /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)("div", { className: "flex justify-center w-full", children: /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)("div", { className: "w-full max-w-3xl", children: /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)(VideoPlayer, { url: mainVideoUrl, controls: true, muted: false }) }) }),
|
|
38255
|
-
highlightVideoUrl && /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)("div", { className: "flex justify-center w-full", children: /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)("div", { className: "w-full max-w-3xl", children: /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)(VideoPlayer, { url: highlightVideoUrl, poster: highlightVideoThumbnail, controls: true, muted: false }) }) })
|
|
38257
|
+
highlightVideoUrl && /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)("div", { className: "flex justify-center w-full", children: /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)("div", { className: "w-full max-w-3xl", children: /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)(VideoPlayer, { url: highlightVideoUrl, poster: highlightVideoThumbnail, controls: true, muted: false }) }) }),
|
|
38258
|
+
videoSummary && /* @__PURE__ */ (0, import_jsx_runtime2018.jsxs)("div", { className: "flex flex-col gap-6 w-full min-w-0", children: [
|
|
38259
|
+
/* @__PURE__ */ (0, import_jsx_runtime2018.jsx)("h2", { className: "text-h1 tracking-[-1.12px] text-ods-text-primary break-words", children: "Summary" }),
|
|
38260
|
+
/* @__PURE__ */ (0, import_jsx_runtime2018.jsx)("div", { className: "text-h4 text-ods-text-primary break-words overflow-hidden", children: /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)(MarkdownRenderer, { content: videoSummary }) })
|
|
38261
|
+
] })
|
|
38256
38262
|
] }),
|
|
38257
38263
|
releaseContent && /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)("div", { className: "text-h4 text-ods-text-primary", children: /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)(MarkdownRenderer, { content: releaseContent }) }),
|
|
38258
38264
|
hasBreakingChanges && /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)(Card, { className: "border-red-500 bg-red-500/10", children: /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)(CardContent, { className: "p-6", children: /* @__PURE__ */ (0, import_jsx_runtime2018.jsxs)("div", { className: "flex items-center gap-3", children: [
|